forked from Clearfacts/assetic-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.72 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
{
"name": "symfony/assetic-bundle",
"description": "Integrates Assetic into Symfony2",
"keywords": ["assets", "compression", "minification"],
"homepage": "https://github.com/symfony/AsseticBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Kris Wallsmith",
"email": "[email protected]",
"homepage": "http://kriswallsmith.net/"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/quick-order/assetic"
}
],
"require": {
"php": "^5.3||^7.0||^8.0",
"symfony/framework-bundle": "~2.3|~3.0|~4.0|~5.0",
"symfony/dependency-injection": "~2.3|~3.0|~4.0|~5.0",
"symfony/console": "~2.3|~3.0|~4.0|~5.0",
"symfony/yaml": "~2.3|~3.0|~4.0|~5.0",
"kriswallsmith/assetic": "dev-master#3bc23d50acc9c842180ef78ef62129184f500d6c"
},
"require-dev": {
"patchwork/jsqueeze": "~1.0",
"kriswallsmith/spork": "~0.3",
"symfony/twig-bundle": "~2.3|~3.0|~4.0|~5.0",
"symfony/class-loader": "~2.3|~3.0|~4.0|~5.0",
"symfony/dom-crawler": "~2.3|~3.0|~4.0|~5.0",
"symfony/css-selector": "~2.3|~3.0|~4.0|~5.0",
"symfony/phpunit-bridge": "~2.7|~3.0|~4.0|~5.0"
},
"conflict": {
"twig/twig": "<1.27",
"kriswallsmith/spork": "<=0.2"
},
"suggest": {
"symfony/twig-bundle": "to use the Twig integration",
"kriswallsmith/spork": "to be able to dump assets in parallel"
},
"autoload": {
"psr-4": { "Symfony\\Bundle\\AsseticBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.8-dev"
}
}
}