From e67dab6d5030e927394254e6cdc4191dee7b4373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Demonchaux?= Date: Wed, 1 Nov 2023 07:59:14 +0100 Subject: [PATCH 1/3] 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 | 12 ++++++------ composer.lock | 34 +++++++++++++++++----------------- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/composer.json b/composer.json index e48b8ba..82af26f 100644 --- a/composer.json +++ b/composer.json @@ -36,18 +36,18 @@ }, "require": { "php": "~8.1.0 || ~8.2.0", - "mezzio/mezzio-router": "^3.0", - "psr/container": "^1.0 || ^2.0", + "mezzio/mezzio-router": "^3.17", + "psr/container": "^1.0 || ^2.0.2", "psr/http-message": "^1.0.1 || ^2.0.0", - "psr/http-server-middleware": "^1.0" + "psr/http-server-middleware": "^1.0.2" }, "require-dev": { "ext-json": "*", "laminas/laminas-coding-standard": "~2.5.0", - "laminas/laminas-diactoros": "^3.0", - "phpunit/phpunit": "^10.1.0", + "laminas/laminas-diactoros": "^3.3", + "phpunit/phpunit": "^10.4.2", "psalm/plugin-phpunit": "^0.18.4", - "vimeo/psalm": "^5.8" + "vimeo/psalm": "^5.15" }, "suggest": { "ext-json": "If you wish to use the JsonStrategy with BodyParamsMiddleware" diff --git a/composer.lock b/composer.lock index 18032ae..f1d1b7c 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": "666247842976c155a4ddaef8da14fffe", + "content-hash": "0af6e2737cb4f03c65c10348212b65c3", "packages": [ { "name": "fig/http-message-util", @@ -64,26 +64,26 @@ }, { "name": "mezzio/mezzio-router", - "version": "3.16.1", + "version": "3.17.0", "source": { "type": "git", "url": "https://github.com/mezzio/mezzio-router.git", - "reference": "b83d61a728fdc2c62c6d20d16b73414901b36070" + "reference": "78573e16144a70ccf02039e1a2600788119c0dbb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mezzio/mezzio-router/zipball/b83d61a728fdc2c62c6d20d16b73414901b36070", - "reference": "b83d61a728fdc2c62c6d20d16b73414901b36070", + "url": "https://api.github.com/repos/mezzio/mezzio-router/zipball/78573e16144a70ccf02039e1a2600788119c0dbb", + "reference": "78573e16144a70ccf02039e1a2600788119c0dbb", "shasum": "" }, "require": { - "fig/http-message-util": "^1.1.2", - "php": "~8.1.0 || ~8.2.0", - "psr/container": "^1.0 || ^2.0", - "psr/http-factory": "^1.0", + "fig/http-message-util": "^1.1.5", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", + "psr/container": "^1.1.2 || ^2.0", + "psr/http-factory": "^1.0.2", "psr/http-message": "^1.0.1 || ^2.0.0", - "psr/http-server-middleware": "^1.0", - "webmozart/assert": "^1.10" + "psr/http-server-middleware": "^1.0.2", + "webmozart/assert": "^1.11" }, "conflict": { "mezzio/mezzio": "<3.5", @@ -91,12 +91,12 @@ }, "require-dev": { "laminas/laminas-coding-standard": "~2.5.0", - "laminas/laminas-diactoros": "^2.25.2", - "laminas/laminas-servicemanager": "^3.20.0", - "laminas/laminas-stratigility": "^3.9.0", - "phpunit/phpunit": "^10.1.2", + "laminas/laminas-diactoros": "^3.3.0", + "laminas/laminas-servicemanager": "^3.22.1", + "laminas/laminas-stratigility": "^3.11.0", + "phpunit/phpunit": "^10.4.2", "psalm/plugin-phpunit": "^0.18.4", - "vimeo/psalm": "^5.9" + "vimeo/psalm": "^5.15" }, "suggest": { "mezzio/mezzio-aurarouter": "^3.0 to use the Aura.Router routing adapter", @@ -142,7 +142,7 @@ "type": "community_bridge" } ], - "time": "2023-04-24T14:33:22+00:00" + "time": "2023-10-31T17:23:17+00:00" }, { "name": "psr/container", From 62606db590410d710009de70e5e9b7ac49183fd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Demonchaux?= Date: Wed, 1 Nov 2023 08:00:23 +0100 Subject: [PATCH 2/3] 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 | 2 +- composer.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 82af26f..71228a3 100644 --- a/composer.json +++ b/composer.json @@ -35,7 +35,7 @@ } }, "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "mezzio/mezzio-router": "^3.17", "psr/container": "^1.0 || ^2.0.2", "psr/http-message": "^1.0.1 || ^2.0.0", diff --git a/composer.lock b/composer.lock index f1d1b7c..bd35d65 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": "0af6e2737cb4f03c65c10348212b65c3", + "content-hash": "4e5c4793bf6a8e5c9d7e3e749819060d", "packages": [ { "name": "fig/http-message-util", @@ -4403,7 +4403,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 863917dad645118a7f61e09eb51902682949dde3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Demonchaux?= Date: Wed, 1 Nov 2023 12:07:30 +0100 Subject: [PATCH 3/3] review 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 | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 71228a3..a5ce3e4 100644 --- a/composer.json +++ b/composer.json @@ -36,10 +36,10 @@ }, "require": { "php": "~8.1.0 || ~8.2.0 || ~8.3.0", - "mezzio/mezzio-router": "^3.17", - "psr/container": "^1.0 || ^2.0.2", + "mezzio/mezzio-router": "^3.0", + "psr/container": "^1.0 || ^2.0", "psr/http-message": "^1.0.1 || ^2.0.0", - "psr/http-server-middleware": "^1.0.2" + "psr/http-server-middleware": "^1.0" }, "require-dev": { "ext-json": "*", diff --git a/composer.lock b/composer.lock index bd35d65..c7d1104 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": "4e5c4793bf6a8e5c9d7e3e749819060d", + "content-hash": "92a1170f4a04ad0d778aed7366b42981", "packages": [ { "name": "fig/http-message-util",