From de3a1991e440e7907d79fb8383227243af92c277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Tue, 19 Dec 2023 11:21:45 +0100 Subject: [PATCH 1/4] Require a recent PHPUnit and remove unused dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- tests/integration/composer.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/integration/composer.json b/tests/integration/composer.json index e06a52a6..88bc9938 100644 --- a/tests/integration/composer.json +++ b/tests/integration/composer.json @@ -1,10 +1,8 @@ { "require-dev": { - "phpunit/phpunit": "~4.6", + "phpunit/phpunit": "^9", "behat/behat": "^3.0", - "guzzlehttp/guzzle": "~5.0", - "jarnaiz/behat-junit-formatter": "^1.3", - "sabre/dav": "3.2" + "guzzlehttp/guzzle": "~5.0" }, "autoload": { "files": [ From 68e3405353d3017eeded21e402f405c13d75cc3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Tue, 19 Dec 2023 11:28:37 +0100 Subject: [PATCH 2/4] Update behat and guzzle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- tests/integration/composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/composer.json b/tests/integration/composer.json index 88bc9938..dad0d1dd 100644 --- a/tests/integration/composer.json +++ b/tests/integration/composer.json @@ -1,8 +1,8 @@ { "require-dev": { "phpunit/phpunit": "^9", - "behat/behat": "^3.0", - "guzzlehttp/guzzle": "~5.0" + "behat/behat": "^3.13", + "guzzlehttp/guzzle": "^7.8" }, "autoload": { "files": [ From a6befc4e6d4884d1c98d09d419ac51fcb1f38647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Tue, 19 Dec 2023 11:29:03 +0100 Subject: [PATCH 3/4] Update PHPUnit to version 10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- tests/integration/composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/composer.json b/tests/integration/composer.json index dad0d1dd..3568a6f7 100644 --- a/tests/integration/composer.json +++ b/tests/integration/composer.json @@ -1,6 +1,6 @@ { "require-dev": { - "phpunit/phpunit": "^9", + "phpunit/phpunit": "^10.5", "behat/behat": "^3.13", "guzzlehttp/guzzle": "^7.8" }, From e143edc4770c47c2a870943de12058193035d339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Tue, 19 Dec 2023 15:02:39 +0100 Subject: [PATCH 4/4] Force PHP 8.0.2 platform and downgrade phpunit accordingly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- tests/integration/composer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/integration/composer.json b/tests/integration/composer.json index 3568a6f7..8fce8960 100644 --- a/tests/integration/composer.json +++ b/tests/integration/composer.json @@ -1,6 +1,6 @@ { "require-dev": { - "phpunit/phpunit": "^10.5", + "phpunit/phpunit": "^9.6", "behat/behat": "^3.13", "guzzlehttp/guzzle": "^7.8" }, @@ -16,5 +16,10 @@ "features/bootstrap/" ] } + }, + "config": { + "platform": { + "php": "8.0.2" + } } }