Skip to content

Commit

Permalink
Fix coverage directories in composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelOxid committed Aug 14, 2024
1 parent a902feb commit 2fdf798
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@
"post-install-cmd": "git-hooks/init.sh",
"post-update-cmd": "git-hooks/init.sh",
"phpcs": "phpcs --standard=tests/phpcs.xml",
"phpcs-report": "phpcs --standard=tests/phpcs.xml --report=json --report-file=tests/reports/phpcs.report.json",
"phpcs-report": "phpcs --standard=tests/phpcs.xml --report=json --report-file=tests/Reports/phpcs.report.json",
"phpcbf": "phpcbf --standard=tests/phpcs.xml",

"phpstan": "phpstan -ctests/PhpStan/phpstan.neon analyse src/",
"phpstan-report": "phpstan -ctests/PhpStan/phpstan.neon analyse src/ --error-format=json > tests/reports/phpstan.report.json",
"phpstan-report": "phpstan -ctests/PhpStan/phpstan.neon analyse src/ --error-format=json > tests/Reports/phpstan.report.json",

"phpmd": "phpmd src text cleancode,codesize,design,unusedcode",
"phpmd-report": "phpmd src json cleancode,codesize,design,unusedcode --reportfile tests/reports/phpmd.report.json",
"phpmd-report": "phpmd src json cleancode,codesize,design,unusedcode --reportfile tests/Reports/phpmd.report.json",

"deptrac": "deptrac analyze",

Expand All @@ -75,7 +75,7 @@

"phpunit": "vendor/bin/phpunit --config=tests/ --testsuite=Unit",
"phpintegration": "vendor/bin/phpunit --bootstrap=/var/www/source/bootstrap.php --config=tests/ --testsuite=Integration",
"phpunit-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --bootstrap=/var/www/source/bootstrap.php --config=tests/ --coverage-html=tests/reports/coverage",
"phpunit-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text --bootstrap=/var/www/source/bootstrap.php --config=tests/ --coverage-html=tests/Reports/coverage",

"codeception": [
"Composer\\Config::disableProcessTimeout",
Expand Down

0 comments on commit 2fdf798

Please sign in to comment.