From b7e0b98fea2b17324e4e3faeccab73b91bfed50a Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Sun, 15 Sep 2024 18:16:32 +0200 Subject: [PATCH] fix path --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index d555f31..812a688 100644 --- a/composer.json +++ b/composer.json @@ -46,9 +46,9 @@ }, "scripts": { "test": "phpunit tests/", - "codestyle-fix": "../../../vendor/bin/php-cs-fixer fix", - "codestyle-check": "../../../vendor/bin/php-cs-fixer fix --dry-run --verbose --using-cache=no --show-progress=none --format=checkstyle", - "phpstan": "../../../vendor/bin/phpstan analyse . --configuration=phpstan.neon", + "codestyle-fix": "vendor/bin/php-cs-fixer fix", + "codestyle-check": "vendor/bin/php-cs-fixer fix --dry-run --verbose --using-cache=no --show-progress=none --format=checkstyle", + "phpstan": "vendor/bin/phpstan analyse . --configuration=phpstan.neon", "linting": [ "composer validate --strict --no-check-version", "@codestyle-check",