From d95b86c95297eabbbc884958abc60d6549a652b9 Mon Sep 17 00:00:00 2001 From: Nathanael Esayeas Date: Tue, 15 Nov 2022 18:35:57 -0600 Subject: [PATCH 1/3] Update composer config `platform.php` to `8.0.99` Signed-off-by: Nathanael Esayeas --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 15e3a0b..5557e0f 100644 --- a/composer.json +++ b/composer.json @@ -42,7 +42,7 @@ "config": { "sort-packages": true, "platform": { - "php": "7.4.99" + "php": "8.0.99" }, "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true From 57334654dde9a47d32dea16d2da4234f3f61ff21 Mon Sep 17 00:00:00 2001 From: Nathanael Esayeas Date: Tue, 15 Nov 2022 18:36:00 -0600 Subject: [PATCH 2/3] Update composer `php` to `~8.0.0 || ~8.1.0 || ~8.2.0` Signed-off-by: Nathanael Esayeas --- composer.json | 2 +- composer.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 5557e0f..0a8434f 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "forum": "https://discourse.laminas.dev/" }, "require": { - "php": ">=7.4, <8.2", + "php": "~8.0.0 || ~8.1.0 || ~8.2.0", "laminas/laminas-cli": "^1.4.0", "laminas/laminas-servicemanager": "^3.2 || ^4.0", "zakirullin/mess": "^0.8.3" diff --git a/composer.lock b/composer.lock index dcd9e80..b384439 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "d04526a70ca642325879221d81ae551f", + "content-hash": "494927074b90fb37d1926d8fca3dfeb3", "packages": [ { "name": "laminas/laminas-cli", @@ -4710,11 +4710,11 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": ">=7.4, <8.2" + "php": "~8.0.0 || ~8.1.0 || ~8.2.0" }, "platform-dev": [], "platform-overrides": { - "php": "7.4.99" + "php": "8.0.99" }, "plugin-api-version": "2.3.0" } From 12c11a2a78e4e8e1ba63fa739fc9594f61f165e0 Mon Sep 17 00:00:00 2001 From: Nathanael Esayeas Date: Tue, 15 Nov 2022 18:36:00 -0600 Subject: [PATCH 3/3] Ignore PHP platform requirements via `.laminas-ci.json` Signed-off-by: Nathanael Esayeas --- .laminas-ci.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .laminas-ci.json diff --git a/.laminas-ci.json b/.laminas-ci.json new file mode 100644 index 0000000..89ee608 --- /dev/null +++ b/.laminas-ci.json @@ -0,0 +1,5 @@ +{ + "ignore_php_platform_requirements": { + "8.2": true + } +} \ No newline at end of file