forked from symfony/assetic-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.18 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
{
"name": "symfony/assetic-bundle",
"description": "Integrates Assetic into Symfony2",
"keywords": ["assets", "compression", "minification"],
"homepage": "https://github.com/symfony/AsseticBundle",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Kris Wallsmith",
"email": "[email protected]",
"homepage": "http://kriswallsmith.net/"
}
],
"require": {
"php": ">=5.3.0",
"symfony/framework-bundle": "~2.1",
"kriswallsmith/assetic": ">=1.1.0-alpha4,<1.2-dev"
},
"require-dev": {
"symfony/twig-bundle": "~2.1",
"symfony/console": "~2.1",
"symfony/class-loader": "~2.1",
"symfony/yaml": "~2.1",
"symfony/form": "~2.1",
"symfony/dom-crawler": "~2.1",
"symfony/css-selector": "~2.1"
},
"suggest": {
"symfony/twig-bundle": "~2.1"
},
"autoload": {
"psr-0": { "Symfony\\Bundle\\AsseticBundle": "" }
},
"target-dir": "Symfony/Bundle/AsseticBundle",
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}