From 239b2aa5267fab839659cb221096750334856877 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Wed, 19 Mar 2025 15:30:30 +0100 Subject: [PATCH 1/2] Remove phpunit-bridge from test-pack --- composer.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 627f70b..ce0abc8 100644 --- a/composer.json +++ b/composer.json @@ -4,15 +4,13 @@ "license": "MIT", "description": "A pack for functional and end-to-end testing within a Symfony app", "require": { - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "^11.5", "symfony/browser-kit": "*", - "symfony/css-selector": "*", - "symfony/phpunit-bridge": "*" + "symfony/css-selector": "*" }, "require-dev": { - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "^11.5", "symfony/browser-kit": "*", - "symfony/css-selector": "*", - "symfony/phpunit-bridge": "*" + "symfony/css-selector": "*" } } From 7bea7a68caa86abd0be6edd2f3b120c53cd3db66 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Wed, 19 Mar 2025 15:32:56 +0100 Subject: [PATCH 2/2] Not restrict version longer as phpunit bridge not longer here --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index ce0abc8..2f24f08 100644 --- a/composer.json +++ b/composer.json @@ -4,12 +4,12 @@ "license": "MIT", "description": "A pack for functional and end-to-end testing within a Symfony app", "require": { - "phpunit/phpunit": "^11.5", + "phpunit/phpunit": "*", "symfony/browser-kit": "*", "symfony/css-selector": "*" }, "require-dev": { - "phpunit/phpunit": "^11.5", + "phpunit/phpunit": "*", "symfony/browser-kit": "*", "symfony/css-selector": "*" }