Skip to content

Commit

Permalink
Merge pull request #10463 from kkmuffme/fix-scripts-running-with-inco…
Browse files Browse the repository at this point in the history
…nsistent-php-versions

fix composer scripts running with inconsistent php versions
  • Loading branch information
orklah committed Dec 7, 2023
2 parents f4e9837 + 951fa22 commit b87427f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@
"psalter"
],
"scripts": {
"cs": "phpcs -ps",
"cs-fix": "phpcbf -ps",
"lint": "parallel-lint ./src ./tests",
"cs": "@php phpcs -ps",
"cs-fix": "@php phpcbf -ps",
"lint": "@php parallel-lint ./src ./tests",
"phpunit": [
"Composer\\Config::disableProcessTimeout",
"paratest --runner=WrapperRunner"
"@php paratest --runner=WrapperRunner"
],
"phpunit-std": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
"@php phpunit"
],
"verify-callmap": "@php phpunit tests/Internal/Codebase/InternalCallMapHandlerTest.php",
"psalm": "@php ./psalm",
Expand Down

0 comments on commit b87427f

Please sign in to comment.