From c25e0d7be256d3f82c955860d8b08197eb766241 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Wed, 19 Mar 2025 15:30:30 +0100 Subject: [PATCH] Remove phpunit-bridge from test-pack --- composer.json | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 627f70b..5419160 100644 --- a/composer.json +++ b/composer.json @@ -4,15 +4,16 @@ "license": "MIT", "description": "A pack for functional and end-to-end testing within a Symfony app", "require": { - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "*", "symfony/browser-kit": "*", - "symfony/css-selector": "*", - "symfony/phpunit-bridge": "*" + "symfony/css-selector": "*" }, "require-dev": { - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "*", "symfony/browser-kit": "*", - "symfony/css-selector": "*", - "symfony/phpunit-bridge": "*" + "symfony/css-selector": "*" + }, + "conflict": { + "phpunit/phpunit": "<11.1" } }