build: Remove redundant 'vendor/bin' prefix from composer commands
authorTimo Tijhof <krinklemail@gmail.com>
Mon, 8 Jul 2019 21:59:19 +0000 (22:59 +0100)
committerTimo Tijhof <krinklemail@gmail.com>
Mon, 8 Jul 2019 21:59:19 +0000 (22:59 +0100)
Follows 214750d8d224. This isn't needed because they run with
that directory already in their PATH.

Change-Id: I855bbe53c2b5c87afa425b7b6d3ec920c452cc99

composer.json

index 9240ace..c61febc 100644 (file)
                        "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,