forked from restart-tech/php-coveralls
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
89 lines (89 loc) · 3.05 KB
/
composer.json
File metadata and controls
89 lines (89 loc) · 3.05 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "php-coveralls/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": "^7.0 || ^8.0",
"ext-json": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"psr/log": "^3.0",
"symfony/config": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/console": "^2.1 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/stopwatch": "^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^2.0.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^1.1 || ^2.3",
"phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.0 || ^7.0 || >=8.0 <8.5.29 || >=9.0 <9.5.23",
"sanmai/phpunit-legacy-adapter": "^6.1 || ^8.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": {
"build-phar": [
"composer config platform.php 7.0.0",
"composer update --no-dev --optimize-autoloader",
"wget https://github.com/humbug/box/releases/latest/download/box.phar -O box.phar && chmod 0755 box.phar",
"php box.phar validate -i box.json",
"rm -f ./build/artifacts/php-coveralls.phar*",
"php box.phar compile -v --config=box.json",
"php box.phar info -l ./build/artifacts/php-coveralls.phar",
"gpg --detach-sign --output ./build/artifacts/php-coveralls.phar.asc ./build/artifacts/php-coveralls.phar",
"php ./build/artifacts/php-coveralls.phar --version"
],
"install-dev-tools": [
"cd dev-tools && composer install --no-interaction"
],
"sca": [
"php dev-tools/vendor/bin/php-cs-fixer check -vv",
"php dev-tools/vendor/bin/phpmd src text build/config/phpmd.xml"
]
},
"config": {
"optimize-autoloader": true,
"process-timeout": 0,
"sort-packages": true
}
}