From 1a91e67730d05f7cf3a5b782175acb464bb2b732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 30 Dec 2017 19:16:29 +0100 Subject: [PATCH] Fix: No need to specify path to bin directory --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 1f195cf7..d1283488 100644 --- a/composer.json +++ b/composer.json @@ -57,10 +57,10 @@ } }, "scripts": { - "test" : "vendor/bin/phpunit", - "testOnly" : "vendor/bin/phpunit --colors --filter", - "coverage" : "vendor/bin/phpunit --coverage-text", - "style-check" : "vendor/bin/php-cs-fixer fix --dry-run --verbose --diff", - "style-fix" : "vendor/bin/php-cs-fixer fix --verbose" + "test" : "phpunit", + "testOnly" : "phpunit --colors --filter", + "coverage" : "phpunit --coverage-text", + "style-check" : "php-cs-fixer fix --dry-run --verbose --diff", + "style-fix" : "php-cs-fixer fix --verbose" } }