This repository has been archived by the owner on Sep 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
55 lines (55 loc) · 1.49 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "netzmacht/assetic-autoprefixer",
"description": "autoprefixer-php filter for kriswallsmith/assetic",
"keywords": [
"assets",
"css",
"vendor-prefix"
],
"homepage": "http://netzmacht.de",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "David Molineus",
"email": "david.molineus@netzmacht.de",
"homepage": "http://netzmacht.de",
"role": "Developer"
},
{
"name": "Tristan Lins",
"email": "tristan.lins@bit3.de",
"homepage": "http://bit3.de",
"role": "Developer"
}
],
"support": {
"email": "info@netzmacht.de",
"issues": "https://github.com/netzmacht/assetic-autoprefixer-php/issues",
"wiki": "https://github.com/netzmacht/assetic-autoprefixer-php/wiki",
"source": "https://github.com/netzmacht/assetic-autoprefixer-php"
},
"require": {
"php": ">=5.3",
"kriswallsmith/assetic": "1.*"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"squizlabs/php_codesniffer": "~1.0",
"phpmd/phpmd": "~2.0"
},
"replace": {
"bit3/assetic-autoprefixer": "self.version"
},
"autoload": {
"psr-4": {
"Bit3\\Assetic\\Filter\\Autoprefixer\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
}
}
}