From f0e2d0921607f38d5d878a63dcb9979d66492fa1 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Fri, 17 Oct 2025 11:03:11 +0200 Subject: [PATCH] Fix the local test setup When installing dependencies in the root project, the bundle tests are installing phpunit as a transitive dependency. This causes issue when the installed version is incompatible with the version installed by the simple-phpunit script. CI was not impacted because it injects such conflict rule in component-level files to prevent this issue already. --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 20a9ac119..f180cd010 100644 --- a/composer.json +++ b/composer.json @@ -43,6 +43,7 @@ "symfony/polyfill-uuid": "^1.13.1" }, "conflict": { + "phpunit/phpunit": ">=10", "symfony/http-client": "5.2.0" }, "autoload": {