forked from php-coveralls/php-coveralls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.42 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
{
"name": "satooshi/php-coveralls",
"description": "PHP client library for Coveralls API",
"keywords": ["coverage", "github", "test", "ci"],
"homepage": "https://github.com/satooshi/php-coveralls",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Kitamura Satoshi",
"email": "[email protected]",
"homepage": "https://www.facebook.com/satooshi.jp"
}
],
"require": {
"php": ">=5.3",
"ext-json": "*",
"ext-simplexml": "*",
"symfony/yaml": ">=2.0",
"symfony/console": ">=2.0",
"symfony/config": ">=2.0",
"symfony/stopwatch": ">=2.2",
"guzzle/guzzle": ">=3.0",
"psr/log": "1.0.0"
},
"require-dev": {
"phpunit/phpunit": "3.7.*@stable",
"phpunit/php-invoker": ">=1.1.0,<1.2.0",
"pdepend/pdepend": "dev-master",
"phpmd/phpmd": "dev-master",
"sebastian/phpcpd": "1.4.*@stable",
"sebastian/finder-facade": "dev-master",
"theseer/fdomdocument": "dev-master",
"squizlabs/php_codesniffer": "1.4.*@stable",
"apigen/apigen": "2.8.*@stable"
},
"suggest": {
"symfony/http-kernel": "Allows Symfony integration"
},
"autoload": {
"psr-0": { "Satooshi\\Component": "src/", "Satooshi\\Bundle": "src/" }
},
"bin": ["composer/bin/coveralls"]
}