From f91a1e54d546199854f8603f37b8550058ed46bb Mon Sep 17 00:00:00 2001 From: Joey Smith Date: Fri, 7 Nov 2025 01:37:45 -0600 Subject: [PATCH] Fix composer.json script for phpstan usage Signed-off-by: Joey Smith Signed-off-by: Joey Smith --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index d933aaf..9859487 100644 --- a/composer.json +++ b/composer.json @@ -60,16 +60,16 @@ "check": [ "@cs-check", "@static-analysis", - "@test" + "@test", + "@test-integration" ], "cs-check": "phpcs", "cs-fix": "phpcbf", "test": "phpunit --colors=always --testsuite \"unit test\"", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml", "test-integration": "phpunit --colors=always --testsuite \"integration test\"", - "static-analysis": "psalm --shepherd --stats", - "sa-update-baseline": "psalm --update-baseline", - "sa-no-baseline": "psalm --shepherd --stats --ignore-baseline", + "static-analysis": "vendor/bin/phpstan analyse --memory-limit=256M", + "sa-generate-baseline": "vendor/bin/phpstan analyse --memory-limit=256M --generate-baseline", "upload-coverage": "coveralls -v" } }