From 19877a641b2e7157b396aeb56ea725a1e97e4eed Mon Sep 17 00:00:00 2001 From: Daniel Kurowski <daniel.kurowski@grifart.cz> Date: Tue, 1 Jun 2021 10:04:18 +0200 Subject: [PATCH] Got rid of vendor/bin/ in scripts so that it works on Windows as well --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index d1aaf19..78456e1 100644 --- a/composer.json +++ b/composer.json @@ -16,8 +16,8 @@ "@phpstan", "@test" ], - "phpstan": "vendor/bin/phpstan analyze --no-interaction -l max --error-format compact src", - "test": "vendor/bin/tester src" + "phpstan": "phpstan analyze --no-interaction -l max --error-format compact src", + "test": "tester src" }, -- GitLab