forked from php-coveralls/php-coveralls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "twinh/php-coveralls",
"description": "PHP client library for Coveralls API",
"keywords": ["coverage", "github", "test", "ci"],
"homepage": "https://github.com/php-coveralls/php-coveralls",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kitamura Satoshi",
"email": "with.no.parachute@gmail.com",
"homepage": "https://www.facebook.com/satooshi.jp",
"role": "Original creator"
},
{
"name": "Takashi Matsuo",
"email": "tmatsuo@google.com"
},
{
"name": "Google Inc"
},
{
"name": "Dariusz Ruminski",
"email": "dariusz.ruminski@gmail.com",
"homepage": "https://github.com/keradus"
},
{
"name": "Contributors",
"homepage": "https://github.com/php-coveralls/php-coveralls/graphs/contributors"
}
],
"require": {
"php": "^5.5 || ^7.0",
"ext-json": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^6.0",
"psr/log": "^1.0",
"symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0",
"symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0",
"symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0",
"symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0"
},
"suggest": {
"symfony/http-kernel": "Allows Symfony integration"
},
"autoload": {
"psr-4": { "PhpCoveralls\\": "src/"}
},
"autoload-dev": {
"psr-4": { "PhpCoveralls\\Tests\\": "tests/"}
},
"bin": ["bin/php-coveralls"],
"scripts": {
"install-dev-tools": [
"cd dev-tools && composer update --no-interaction"
],
"sca": [
"php dev-tools/vendor/bin/php-cs-fixer fix --dry-run -vv",
"php dev-tools/vendor/bin/phpmd src text build/config/phpmd.xml"
]
},
"config": {
"optimize-autoloader": true,
"process-timeout": 0,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.3-dev"
}
}
}