From 865f358cf4e0f6a91ef3358ea9e4b98908e9346e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Demonchaux?= Date: Thu, 2 Nov 2023 11:32:48 +0100 Subject: [PATCH 1/2] allow php 8.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Demonchaux --- composer.json | 6 +++--- composer.lock | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/composer.json b/composer.json index 70157fdd..753d819d 100644 --- a/composer.json +++ b/composer.json @@ -31,7 +31,7 @@ } }, "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "laminas/laminas-filter": "^2.19", "laminas/laminas-servicemanager": "^3.21.0", "laminas/laminas-stdlib": "^3.0", @@ -40,10 +40,10 @@ "require-dev": { "ext-json": "*", "laminas/laminas-coding-standard": "~2.5.0", - "phpunit/phpunit": "^10.1.3", + "phpunit/phpunit": "^10.4.2", "psalm/plugin-phpunit": "^0.18.4", "psr/http-message": "^2.0", - "vimeo/psalm": "^5.12", + "vimeo/psalm": "^5.15", "webmozart/assert": "^1.11" }, "suggest": { diff --git a/composer.lock b/composer.lock index 7b80b2a5..af01c989 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": "0e07d889fbc5b2112645d5d0df7017dd", + "content-hash": "9c697bc7de7898a553bfb1ce1030945f", "packages": [ { "name": "laminas/laminas-filter", @@ -235,16 +235,16 @@ }, { "name": "laminas/laminas-validator", - "version": "2.40.0", + "version": "2.41.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-validator.git", - "reference": "0474aec33a802a8081ec2523ec0a51c1e3d64b08" + "reference": "ca27df621e12cbd4c138dab7abf3e7e5692c582c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-validator/zipball/0474aec33a802a8081ec2523ec0a51c1e3d64b08", - "reference": "0474aec33a802a8081ec2523ec0a51c1e3d64b08", + "url": "https://api.github.com/repos/laminas/laminas-validator/zipball/ca27df621e12cbd4c138dab7abf3e7e5692c582c", + "reference": "ca27df621e12cbd4c138dab7abf3e7e5692c582c", "shasum": "" }, "require": { @@ -315,7 +315,7 @@ "type": "community_bridge" } ], - "time": "2023-10-23T09:49:44+00:00" + "time": "2023-10-30T08:22:19+00:00" }, { "name": "psr/container", @@ -4319,7 +4319,7 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "~8.1.0 || ~8.2.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0" }, "platform-dev": { "ext-json": "*" From 96692a44975192661f906045207d9c89bbc75b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Demonchaux?= Date: Thu, 2 Nov 2023 11:33:15 +0100 Subject: [PATCH 2/2] ignore platform req in php 8.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Demonchaux --- .laminas-ci.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.laminas-ci.json b/.laminas-ci.json index 2c63c085..c6aab18b 100644 --- a/.laminas-ci.json +++ b/.laminas-ci.json @@ -1,2 +1,5 @@ { + "ignore_php_platform_requirements": { + "8.3": true + } }