From f1efe6da8a6155e52354eef6240e519a16c0ecad Mon Sep 17 00:00:00 2001 From: MarioRadu Date: Tue, 19 Nov 2024 12:58:03 +0200 Subject: [PATCH 1/2] added command in composer.json Signed-off-by: MarioRadu --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 26bd952c..1d5813ed 100644 --- a/composer.json +++ b/composer.json @@ -116,12 +116,11 @@ "@test", "@analyze" ], - "analyze": "phpstan analyze -l max -c ./phpstan.installer.neon ./src ./config", "clear-config-cache": "php bin/clear-config-cache.php", "cs-check": "phpcs", "cs-fix": "phpcbf", "serve": "php -S 0.0.0.0:8080 -t public/", - "static-analysis": "psalm --shepherd --stats", + "static-analysis": "vendor/bin/phpstan analyse", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" } From 4d8b8bc04d91748c656fddb1f1b7ca80b16796f4 Mon Sep 17 00:00:00 2001 From: MarioRadu Date: Tue, 19 Nov 2024 13:00:32 +0200 Subject: [PATCH 2/2] added command in composer.json Signed-off-by: MarioRadu --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1d5813ed..9fe6154f 100644 --- a/composer.json +++ b/composer.json @@ -120,7 +120,7 @@ "cs-check": "phpcs", "cs-fix": "phpcbf", "serve": "php -S 0.0.0.0:8080 -t public/", - "static-analysis": "vendor/bin/phpstan analyse", + "static-analysis": "phpstan analyse", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" }