36 lines
912 B
JSON
36 lines
912 B
JSON
{
|
|
"name": "codacy/coverage",
|
|
"description": "Sends PHP test coverage information to Codacy.",
|
|
"homepage": "https://github.com/codacy/php-codacy-coverage",
|
|
"type": "library",
|
|
"require": {
|
|
"php": ">=5.3.3",
|
|
"gitonomy/gitlib": ">=1.0",
|
|
"symfony/console": "~2.5|~3.0|~4.0|~5.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~6.5",
|
|
"clue/phar-composer": "^1.1"
|
|
},
|
|
"scripts": {
|
|
"test": "php vendor/bin/phpunit --coverage-clover build/coverage/xml tests",
|
|
"codacyCoverage": "php bin/codacycoverage clover build/coverage/xml",
|
|
"build": "mkdir -p artifacts && php -d phar.readonly=off ./vendor/bin/phar-composer build . artifacts/codacy-coverage.phar"
|
|
},
|
|
"bin": [
|
|
"bin/codacycoverage"
|
|
],
|
|
"autoload": {
|
|
"classmap": [
|
|
"src/"
|
|
]
|
|
},
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Jakob Pupke",
|
|
"email": "jakob.pupke@gmail.com"
|
|
}
|
|
]
|
|
}
|