-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcomposer.json
67 lines (67 loc) · 1.78 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
{
"name": "codeclimate/php-test-reporter",
"description": "PHP client for reporting test coverage to Code Climate",
"keywords": [
"codeclimate",
"coverage"
],
"homepage": "https://github.com/codeclimate/php-test-reporter",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Code Climate",
"email": "hello@codeclimate.com",
"homepage": "https://codeclimate.com"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^5.3 || ^7.0",
"ext-curl": "*",
"padraic/phar-updater": "^1.0",
"psr/log": "^1.0",
"satooshi/php-coveralls": "^1.0",
"symfony/console": "^2.0 || ^3.0 || ^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0.0",
"phpunit/phpunit": "^4.8.35 || ^5.7.0 || ^6.0.0"
},
"autoload": {
"psr-4": {
"CodeClimate\\PhpTestReporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeClimate\\PhpTestReporter\\Tests\\": "tests/"
}
},
"bin": [
"composer/bin/test-reporter"
],
"scripts": {
"box": [
"composer install --no-dev --prefer-dist",
"curl -LSs https://box-project.github.io/box2/installer.php | php",
"php box.phar --version",
"php box.phar build -v"
],
"cs": [
"composer install --prefer-dist",
"php-cs-fixer fix --config=.php_cs --verbose --diff"
],
"test": [
"composer install --prefer-dist",
"./vendor/bin/phpunit --configuration=phpunit.xml.dist"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
}
}