This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
58 lines (58 loc) · 1.56 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
58
{
"name": "beelab/bowerphp",
"description": "An implementation of bower in PHP",
"keywords": ["bower", "package", "dependency", "frontend"],
"homepage": "https://bowerphp.github.io/",
"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.6|^7.0",
"ext-fileinfo": "*",
"ext-zip": "*",
"knplabs/github-api": "^1.4",
"samsonasik/package-versions": "^1.1",
"symfony/console": "^3.4|^4.1",
"symfony/filesystem": "^3.4|^4.1",
"symfony/finder": "^3.4|^4.1",
"symfony/process": "^3.4|^4.1",
"vierbergenlars/php-semver": "^3.0"
},
"require-dev": {
"ext-phar": "*",
"friendsofphp/php-cs-fixer": "^2.14",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^5.7|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Bowerphp\\": "src/Bowerphp"
}
},
"bin": ["bin/bowerphp"],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true
}
}