From 53226fae5fd27bf0848cd4912fddcb30f12e79ed Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 23 Sep 2025 18:58:43 +0200 Subject: [PATCH] chore: update psalm scripts Signed-off-by: Ferdinand Thiessen --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 08dbae41..a5a544a3 100644 --- a/composer.json +++ b/composer.json @@ -11,10 +11,10 @@ "cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix", "cs:check": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --dry-run --diff", "lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './tests/stubs/*' -print0 | xargs -0 -n1 php -l", - "psalm": "psalm.phar --threads=1", - "psalm:update-baseline": "psalm.phar --threads=1 --update-baseline", - "psalm:clear": "psalm.phar --clear-cache && psalm.phar --clear-global-cache", - "psalm:fix": "psalm.phar --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType,MissingOverrideAttribute", + "psalm": "psalm --threads=1", + "psalm:update-baseline": "psalm --threads=1 --update-baseline", + "psalm:clear": "psalm --clear-cache && psalm.phar --clear-global-cache", + "psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MissingParamType,InvalidFalsableReturnType,MissingOverrideAttribute", "test:integration": "phpunit -c tests/phpunit.integration.xml --fail-on-warning", "test:integration:dev": "phpunit -c tests/phpunit.integration.xml --no-coverage --order-by=defects --stop-on-defect --fail-on-warning --stop-on-error --stop-on-failure", "test:unit": "phpunit -c tests/phpunit.unit.xml --fail-on-warning",