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 image: composer:latest
stage: validate stage: validate
script: 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" - ./vendor/bin/phpcs -p --no-colors --basepath="$PWD"
phpstan: phpstan:

View File

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