From c3fe1e28989c1a03567c62e63e7e5f5b163cdbc0 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Wed, 1 May 2024 17:37:02 +0300 Subject: [PATCH] Add support for `psr/http-message` version `^2.0` (#59) --- .github/PULL_REQUEST_TEMPLATE.md | 1 - CHANGELOG.md | 2 +- composer.json | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 4a3e8ac..6be5d58 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,4 +3,3 @@ | Is bugfix? | ✔️/❌ | New feature? | ✔️/❌ | Breaks BC? | ✔️/❌ -| Fixed issues | comma-separated list of tickets # fixed by the PR, if any diff --git a/CHANGELOG.md b/CHANGELOG.md index 574ce42..2d2c71e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 2.1.1 under development -- no changes in this release. +- Enh #55: Add support for `psr/http-message` version `^2.0` (@vjik) ## 2.1.0 February 08, 2024 diff --git a/composer.json b/composer.json index 902d568..cb32db2 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ "ext-hash": "*", "psr/http-factory": "^1.0", "psr/http-factory-implementation": "1.0", - "psr/http-message": "^1.0", + "psr/http-message": "^1.0|^2.0", "psr/http-message-implementation": "1.0", "psr/http-server-handler": "^1.0", "psr/http-server-middleware": "^1.0",