Skip to content

Commit

Permalink
Fix PHPUnit command line arguments in composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioheleno committed Apr 24, 2024
1 parent 55e9c01 commit ee9dc1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
"lint": "vendor/bin/parallel-lint --exclude vendor .",
"phpcs": "vendor/bin/phpcs --standard=ruleset.xml src/ tests/",
"phpstan": "vendor/bin/phpstan analyse --level=max --autoload-file=vendor/autoload.php src/",
"phpunit": "vendor/bin/phpunit ./tests/ --coverage-html=./report/coverage/ --whitelist=./src/ --testdox-html=./report/testdox.html --disallow-test-output --process-isolation",
"phpunit": "vendor/bin/phpunit ./tests/ --coverage-html=./report/coverage/ --testdox-html=./report/testdox.html --disallow-test-output --process-isolation",
"test-ci": "vendor/bin/phpunit ./tests/ --disallow-test-output --process-isolation",
"test-coverage": "vendor/bin/phpunit ./tests/ --whitelist=./src/ --coverage-clover=clover.xml",
"test-coverage": "vendor/bin/phpunit ./tests/ --coverage-clover=clover.xml",
"test": [
"@infection",
"@lint",
Expand Down

0 comments on commit ee9dc1e

Please sign in to comment.