From: Timo Tijhof Date: Mon, 8 Jul 2019 21:59:19 +0000 (+0100) Subject: build: Remove redundant 'vendor/bin' prefix from composer commands X-Git-Tag: 1.34.0-rc.0~1126^2 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=c7411469d25ac1e25690a6c47ac61d76c235f104;p=lhc%2Fweb%2Fwiklou.git 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 --- 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,