From d1efe1c2b21753030883897d7107aebd54378981 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 27 Aug 2024 09:14:04 +0200 Subject: [PATCH 1/2] [TASK] Also allow higher versions of PHPUnit This hopefully will allow us to run the unit tests for all PHP version that we claim to support, i.e., from 5.6.x to currently 8.4.x. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 049ff1270..6e25e8a3c 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "ext-iconv": "*" }, "require-dev": { - "phpunit/phpunit": "^5.7.27" + "phpunit/phpunit": "^5.7.27 || ^8.5.39" }, "suggest": { "ext-mbstring": "for parsing UTF-8 CSS" From 4e8fbc4a6f4b13ce8b5fdd71a0cd7f5369a178f0 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 29 Aug 2024 14:04:57 +0200 Subject: [PATCH 2/2] Add even more possible PHPUnit versions --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 6e25e8a3c..e6a9f3367 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "ext-iconv": "*" }, "require-dev": { - "phpunit/phpunit": "^5.7.27 || ^8.5.39" + "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.39" }, "suggest": { "ext-mbstring": "for parsing UTF-8 CSS"