From 20dd7609bf5e285e53974594d882bb5882def7af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20B=C3=B6sing?= <2189546+boesing@users.noreply.github.com> Date: Fri, 7 Oct 2022 16:43:07 +0200 Subject: [PATCH 1/2] feature: introduce support for PHP 8.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com> --- composer.json | 2 +- composer.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 3e73b8e..27f4eee 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ ], "license": "BSD-3-Clause", "require": { - "php": "~7.4.0 || ~8.0.0 || ~8.1.0", + "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0", "fig/http-message-util": "^1.1", "mezzio/mezzio-router": "^3.1", "psr/container": "^1.0 || ^2.0", diff --git a/composer.lock b/composer.lock index 7bc1331..6cd5a3a 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": "7c447975b02fb04f907e3bb7155ee95a", + "content-hash": "597efce6a01b28dab867cdb4990b784c", "packages": [ { "name": "fig/http-message-util", @@ -4492,7 +4492,7 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "~7.4.0 || ~8.0.0 || ~8.1.0" + "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0" }, "platform-dev": [], "platform-overrides": { From 218dc83606c3a12f4de94ace2666166190d2c0ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20B=C3=B6sing?= <2189546+boesing@users.noreply.github.com> Date: Fri, 7 Oct 2022 16:44:55 +0200 Subject: [PATCH 2/2] qa: ignore PHP platform requirement for PHP 8.2 for now MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com> --- .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..6d7c4b7 --- /dev/null +++ b/.laminas-ci.json @@ -0,0 +1,5 @@ +{ + "ignore_php_platform_requirements": { + "8.2": true + } +}