-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcomposer.json
42 lines (42 loc) · 1.15 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": "sp/bower-bundle",
"type": "symfony-bundle",
"description": "Handle asset dependencies with bower",
"keywords": ["asset", "dependencies", "bower manager", "bower"],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Martin Parsiegla",
"email": "martin.parsiegla@gmail.com",
"homepage": "http://speanet.info"
},
{
"name": "Community contributions",
"homepage": "https://github.com/Spea/SpBowerBundle/contributors"
}
],
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "~2.1 | ~3.0",
"symfony/process": "~2.3,>=2.3.20 | ~2.4,>=2.4.10 | ~2.5,>=2.5.5 | ~3.0",
"doctrine/collections": "1.*",
"symfony/assetic-bundle": "~2.1",
"doctrine/cache": "~1.0"
},
"require-dev":{
"symfony/console": "~2.1",
"phpunit/phpunit": "4.0.*"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": { "Sp\\BowerBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "0.12-dev"
}
}
}