From 778827b6f410bf86e464405ffb9a4db05f79c977 Mon Sep 17 00:00:00 2001 From: DDEV User Date: Mon, 29 Jul 2024 19:55:25 +0000 Subject: [PATCH] trying to migrate configuration on the fly --- composer.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cd7ae77..44ad2a0 100644 --- a/composer.json +++ b/composer.json @@ -37,7 +37,8 @@ }, "scripts": { "lint": "XDEBUG_MODE=off parallel-lint src spec tests", - "phpunit": "XDEBUG_MODE=coverage phpunit --coverage-text", + "phpunit-configuration": "hpunit --migrate-configuration", + "phpunit": "XDEBUG_MODE=coverage phpunit", "phpspec": "XDEBUG_MODE=off phpspec run -f pretty --no-interaction", "phpcs": "XDEBUG_MODE=off phpcs --standard=./phpcs-ruleset.xml .", "rector": [ @@ -48,6 +49,7 @@ "test": [ "XDEBUG_MODE=off composer validate --no-interaction", "@lint", + "@phpunit-configuration", "@phpunit", "@phpspec", "@phpcs",