From 4e1cee96136d8b25081117b6178be9f2f73a3731 Mon Sep 17 00:00:00 2001 From: Timo Schinkel Date: Tue, 19 Dec 2023 13:00:40 +0100 Subject: [PATCH] Update `psr/http-message` Dependency on `psr/http-message` now is `^1.0 || ^2.0` --- CHANGELOG.md | 4 ++++ composer.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 508a8f8..c699bb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased +### Changed +- Dependency on `psr/http-message` now is `^1.0 || ^2.0` + ## [1.1.0] - 2020-11-26 ### Added - Support for PHP 8 diff --git a/composer.json b/composer.json index bb5dd31..69dee49 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ "require": { "php": "^7.2 || ^8.0", "psr/http-client": "^1.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "require-dev": { "phpspec/prophecy": "^1.12",