forked from FabriZZio/bowerphp-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.05 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": "jelte/bowerphp-installer",
"description": "An implementation of bower-installer in PHP",
"keywords": ["package", "dependency", "frontend"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jelte Steijaert",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/jelte/bowserphp-installer/issues"
},
"require": {
"php": ">=5.3.2",
"symfony/console": "~2.3",
"symfony/finder": "~2.2",
"symfony/filesystem": "~2.1",
"symfony/process": "~2.1",
"camspiers/json-pretty": "1.0.*",
"beelab/bowerphp": "v0.4.0"
},
"require-dev":{
"ext-phar": "*",
"phpunit/phpunit": "4.1.*",
"mockery/mockery": "~0.9.2@dev"
},
"autoload": {
"psr-0": { "BowerInstaller": "src/" }
},
"bin": ["bin/bowerphp-installer"],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}