From b33b6081ada0c1cfc005d827ea10e9cf897c1fd2 Mon Sep 17 00:00:00 2001 From: Daniel Seifert Date: Thu, 21 Jul 2022 11:03:37 +0200 Subject: [PATCH] fix composer script commands --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index aad8d9d..2fbdb5e 100644 --- a/composer.json +++ b/composer.json @@ -42,8 +42,9 @@ } }, "scripts": { - "test": "phpunit", + "test": "./vendor/bin/phpunit", "check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run", - "fix-style": "./vendor/bin/php-cs-fixer fix --verbose" + "fix-style": "./vendor/bin/php-cs-fixer fix --verbose", + "check-code": "./vendor/bin/phpstan -c phpstan.neon --no-progress --ansi" } }