forked from php-coveralls/php-coveralls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.94 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
{
"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",
"authors": [
{
"name": "Kitamura Satoshi",
"email": "[email protected]",
"homepage": "https://www.facebook.com/satooshi.jp"
}
],
"require": {
"php": ">=5.5",
"ext-json": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^6.0",
"psr/log": "^1.0",
"symfony/config": "^2.1|^3.0",
"symfony/console": "^2.1|^3.0",
"symfony/stopwatch": "^2.0|^3.0",
"symfony/yaml": "^2.0|^3.0"
},
"suggest": {
"symfony/http-kernel": "Allows Symfony integration"
},
"autoload": {
"psr-4": { "Satooshi\\": "src/Satooshi/" }
},
"autoload-dev": {
"psr-4": { "Satooshi\\": "tests/Satooshi/" }
},
"bin": ["bin/coveralls"],
"scripts": {
"install-devtools": [
"cd devtools && composer update --no-interaction"
],
"sca": [
"php devtools/vendor/bin/php-cs-fixer fix --dry-run -vv",
"php devtools/vendor/bin/phpcs --standard=build/config/phpcs.xml --ignore=*.html.php,*.config.php,*.twig.php src",
"php devtools/vendor/bin/phpmd src text build/config/phpmd.xml"
],
"apigen": [
"php devtools/vendor/bin/apigen -c build/config/apigen.neon -d build/api -s src -s vendor/symfony/config -s vendor/symfony/console -s vendor/symfony/yaml -s vendor/guzzle/guzzle/src -s vendor/psr/log --report build/logs/checkstyle-apigen.xml --exclude *Test.php --exclude */Tests/* --google-analytics UA-40398434-1"
]
},
"config": {
"process-timeout": 0
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}