Specify PHP version for PHPCS

Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
This commit is contained in:
Michael Weimann 2022-12-15 20:45:14 +01:00
parent 2532e87029
commit 202eae5136
No known key found for this signature in database
GPG Key ID: 34F0524D4DA694A1
2 changed files with 12 additions and 2 deletions

View File

@ -126,6 +126,9 @@ phpcs:
image: composer:latest
stage: validate
script:
# tell phpcs the PHP version to check against
# we are using the min suppported version here
- ./vendor/bin/phpcs --config-set php_version 80100
- ./vendor/bin/phpcs -p --no-colors --basepath="$PWD"
phpstan:

View File

@ -14,8 +14,15 @@
}
],
"scripts": {
"phpcs": "phpcs -p --cache",
"phpcbf": "phpcbf -p",
"phpcs:setup": "phpcs --config-set php_version 80100",
"phpcs": [
"composer phpcs:setup",
"phpcs -p --cache"
],
"phpcbf": [
"composer phpcs:setup",
"phpcbf -p"
],
"phpstan": "phpstan"
},
"require": {