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" } }