From b876babbe475c99e16ee303127e6c11356bbd9be Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sun, 4 Aug 2024 13:23:14 +0200 Subject: [PATCH] Add --testdox-summary flag to phpunit executions --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 640cc88..bad8920 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "require-dev": { "phpstan/phpstan": "^1.11", "phpstan/phpstan-phpunit": "^1.4", - "phpunit/phpunit": "^11.2", + "phpunit/phpunit": "^11.3", "roave/security-advisories": "dev-master", "shlinkio/php-coding-standard": "~2.3.0", "spiral/roadrunner-jobs": "^4.5", @@ -53,7 +53,7 @@ "cs": "phpcs", "cs:fix": "phpcbf", "stan": "phpstan analyse", - "test": "phpunit --order-by=random --testdox --colors=always", + "test": "phpunit --order-by=random --testdox --testdox-summary", "test:ci": "@test --coverage-clover=build/clover.xml", "test:pretty": "@test --coverage-html=build/coverage-html" },