-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.24 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
{
"name": "cpliakas/manifest-publisher",
"type": "library",
"description": "A command line tool that builds and publishes a herrera-io/php-phar-update manifest.json file",
"homepage": "https://github.com/cpliakas/manifest-publisher",
"license": "MIT",
"authors": [
{
"name": "See contributors",
"homepage": "https://github.com/cpliakas/manifest-publisher/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cpliakas/manifest-publisher/issues"
},
"require": {
"php": ">=5.4.0",
"cpliakas/git-wrapper": "~1.0",
"doctrine/cache": "~1.0",
"herrera-io/phar-update": "~1.0",
"symfony/console": "~2.0",
"symfony/filesystem": "~2.0"
},
"require-dev": {
"pdepend/pdepend": "~1.0",
"phploc/phploc": "~2.0",
"phpmd/phpmd": "~1.0",
"phpunit/phpunit": "~3.0",
"scrutinizer/ocular": "~1.0",
"sebastian/phpcpd": "~2.0"
},
"autoload": {
"psr-4": {
"Cpliakas\\ManifestPublisher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cpliakas\\ManifestPublisher\\Test\\": "test/"
}
},
"bin": ["bin/manifest"]
}