From 01d5c73a204b3d8cf5c5992b2f80ccacb02b634b Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 6 Oct 2022 17:55:14 +0200 Subject: [PATCH] [BUGFIX] Stop relying on transitive dependencies for `psr/http-message` (#613) We're using a class from this package in the controller and hence should have this package as a direct dependency. --- CHANGELOG.md | 1 + composer.json | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34e81aa..91d5084 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Drop support for PHP 7.2 and 7.3 (#581) ### Fixed +- Stop relying on transitive dependencies for `psr/http-message` (#613) ## 2.0.1 diff --git a/composer.json b/composer.json index bc421d8..920929a 100644 --- a/composer.json +++ b/composer.json @@ -28,6 +28,7 @@ }, "require": { "php": "~7.4.0 || ~8.0.0 || ~8.1.0", + "psr/http-message": "^1.0.1", "typo3/cms-core": "^11.5.2", "typo3/cms-extbase": "^11.5.2", "typo3/cms-fluid": "^11.5.2",