Skip to content

Commit

Permalink
Use the current php binary for invoking sub scripts
Browse files Browse the repository at this point in the history
Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed Jun 29, 2023
1 parent 5a8b97e commit 648a16e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@
"source": "https://github.com/phpmyadmin/shapefile"
},
"scripts": {
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phpstan": "phpstan analyse",
"phpunit": "phpunit --color=always",
"phpcbf": "@php phpcbf",
"phpcs": "@php phpcs",
"phpstan": "@php phpstan analyse",
"phpunit": "@php phpunit --color=always",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
],
"update:baselines": [
"@php phpstan analyse --generate-baseline"
]
},
"require": {
Expand Down

0 comments on commit 648a16e

Please sign in to comment.