forked from mheap/Silex-Assetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.07 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
{
"name": "mheap/silex-assetic",
"description": "Assetic extension for Silex",
"keywords": ["silex", "assetic"],
"homepage": "https://github.com/mheap/Silex-Assetic",
"type": "library",
"license": "MIT",
"version": "dev",
"authors": [
{
"name": "Sven Eisenschmidt",
"email": "[email protected]",
"homepage": "http://unsicherheitsagent.de/"
},
{
"name": "Michael Heap",
"email": "[email protected]",
"homepage": "http://michaelheap.com/"
}
],
"require": {
"php": ">=5.3.0",
"kriswallsmith/assetic": "~1.0",
"symfony/finder": ">=2.1,<2.3-dev"
},
"require-dev": {
"silex/silex": "~1.0@dev",
"twig/twig": "~1.2",
"phpunit/phpunit": "~3.7.10"
},
"suggest": {
"twig/twig": "~1.2"
},
"autoload": {
"psr-0": {
"SilexAssetic": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}