forked from Bee-Lab/bowerphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.49 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
55
56
57
{
"name": "beelab/bowerphp",
"description": "An implementation of bower in PHP",
"keywords": ["package", "dependency", "frontend"],
"homepage": "http://bowerphp.org/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Massimiliano Arione",
"email": "[email protected]"
},
{
"name": "Mauro D'Alatri",
"email": "[email protected]"
},
{
"name": "The Community",
"homepage": "https://github.com/Bee-Lab/bowerphp/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/bee-lab/bowserphp/issues"
},
"require": {
"php": ">=5.3.6",
"ext-zip": "*",
"ext-fileinfo": "*",
"symfony/console": "~2.3|~3.0",
"symfony/finder": "~2.3|~3.0",
"symfony/filesystem": "~2.4|~3.0",
"symfony/process": "~2.3|~3.0",
"camspiers/json-pretty": "1.0.*",
"knplabs/github-api": "1.4.*",
"vierbergenlars/php-semver": "~3.0"
},
"require-dev": {
"ext-phar": "*",
"phpunit/phpunit": "4.*",
"mockery/mockery": "~0.9.3",
"fabpot/php-cs-fixer": "~1.5"
},
"autoload": {
"psr-4": {
"Bowerphp\\": "src/Bowerphp"
}
},
"bin": ["bin/bowerphp"],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}