From c7411469d25ac1e25690a6c47ac61d76c235f104 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Mon, 8 Jul 2019 22:59:19 +0100 Subject: [PATCH] build: Remove redundant 'vendor/bin' prefix from composer commands Follows 214750d8d224. This isn't needed because they run with that directory already in their PATH. Change-Id: I855bbe53c2b5c87afa425b7b6d3ec920c452cc99 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 9240ace2e1..c61febc33d 100644 --- a/composer.json +++ b/composer.json @@ -117,10 +117,10 @@ "composer lint", "composer phpcs" ], - "phpunit": "vendor/bin/phpunit", - "phpunit:unit": "vendor/bin/phpunit --colors=always --testsuite=core:unit,extensions:unit,skins:unit", - "phpunit:integration": "vendor/bin/phpunit --colors=always --testsuite=core:integration,extensions:integration,skins:integration", - "phpunit:coverage": "vendor/bin/phpunit --testsuite=core:unit --exclude-group Dump,Broken,ParserFuzz,Stub" + "phpunit": "phpunit", + "phpunit:unit": "phpunit --colors=always --testsuite=core:unit,extensions:unit,skins:unit", + "phpunit:integration": "phpunit --colors=always --testsuite=core:integration,extensions:integration,skins:integration", + "phpunit:coverage": "phpunit --testsuite=core:unit --exclude-group Dump,Broken,ParserFuzz,Stub" }, "config": { "optimize-autoloader": true, -- 2.20.1