Skip to content

Commit

Permalink
Update phan test command in composer.json
Browse files Browse the repository at this point in the history
Added a flag to the phan test command in the composer.json file to disable the progress bar. This change can help to simplify output in CI environments and logs.
  • Loading branch information
MarjovanLier committed Jan 13, 2024
1 parent a4958e8 commit 74856a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"test:composer-validate": "composer validate --strict",
"test:infection": "php -d memory_limit=-1 -d zend_extension=xdebug -d xdebug.mode=coverage ./vendor/bin/infection --threads=4 --show-mutations",
"test:lint": "php -d memory_limit=-1 ./vendor/bin/parallel-lint --exclude vendor --show-deprecated .",
"test:phan": "php -d memory_limit=-1 ./vendor/bin/phan --allow-polyfill-parser",
"test:phan": "php -d memory_limit=-1 ./vendor/bin/phan --allow-polyfill-parser --no-progress-bar",
"test:phpmd": "php -d memory_limit=-1 ./vendor/bin/phpmd src,tests text phpmd.xml",
"test:phpstan": "php -d memory_limit=-1 ./vendor/bin/phpstan analyse --no-progress --no-interaction",
"test:phpunit": "php -d memory_limit=-1 ./vendor/bin/phpunit --no-coverage --no-logging",
Expand Down

0 comments on commit 74856a5

Please sign in to comment.