From 76988f3289dce23200443a099f44892095ca76b1 Mon Sep 17 00:00:00 2001 From: Jack'lul Date: Fri, 9 Feb 2018 20:34:42 +0100 Subject: [PATCH] Update scripts lines to work on both Unix and Windows --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 3c51dfceb..01cf240b4 100644 --- a/composer.json +++ b/composer.json @@ -41,13 +41,13 @@ }, "scripts": { "check-code": [ - "./vendor/bin/phpcs --standard=phpcs.xml -snp --encoding=utf-8 src/ tests/ --report-width=150" + "\"vendor/bin/phpcs\" --standard=phpcs.xml -snp --encoding=utf-8 src/ tests/ --report-width=150" ], "test": [ - "./vendor/bin/phpunit" + "\"vendor/bin/phpunit\"" ], "test-cov": [ - "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml" + "\"vendor/bin/phpunit\" --coverage-clover build/logs/clover.xml" ], "test-cov-upload": [ "wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml"