From 2fdf7984ed7bc11e54d70d4ceed26ca2aabc4fea Mon Sep 17 00:00:00 2001 From: marcelmanzel Date: Wed, 14 Aug 2024 15:40:26 +0200 Subject: [PATCH] Fix coverage directories in composer.json --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index c8d583b..fc94724 100644 --- a/composer.json +++ b/composer.json @@ -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", @@ -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",