From b14a2321776fe7387f5ae651b031b6114010cc3a Mon Sep 17 00:00:00 2001 From: adlawson Date: Fri, 24 Jul 2015 17:15:17 +0100 Subject: [PATCH] Set verbose flag on phpunit --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 4714181..59d89b5 100644 --- a/composer.json +++ b/composer.json @@ -43,10 +43,10 @@ "phpunit/phpunit": "^4.7" }, "scripts": { - "test": "vendor/bin/phpunit --colors=always", - "test:acceptance": "vendor/bin/phpunit --colors=always --testsuite acceptance", - "test:functional": "vendor/bin/phpunit --colors=always --testsuite functional", - "test:unit": "vendor/bin/phpunit --colors=always --testsuite unit", + "test": "vendor/bin/phpunit -v --colors=always", + "test:acceptance": "vendor/bin/phpunit -v --colors=always --testsuite acceptance", + "test:functional": "vendor/bin/phpunit -v --colors=always --testsuite functional", + "test:unit": "vendor/bin/phpunit -v --colors=always --testsuite unit", "lint:fix": [ "vendor/bin/php-cs-fixer fix src --level=psr2", "vendor/bin/php-cs-fixer fix test --level=psr2"