From 2745ec256ed37aebc84b0bd886d41d6aa0b1ee09 Mon Sep 17 00:00:00 2001 From: Lars Lauger Date: Sun, 5 Jun 2022 21:59:24 +0200 Subject: [PATCH] BUGFIX: Fix compatibility with Neos 7.3.6+ / 8.0.4+ See https://github.com/neos/flow-development-collection/commit/188efe37561a0ca37075a82025bfac26193c023a --- Classes/ExceptionHandler/ExceptionRenderingOptionsResolver.php | 2 +- README.md | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Classes/ExceptionHandler/ExceptionRenderingOptionsResolver.php b/Classes/ExceptionHandler/ExceptionRenderingOptionsResolver.php index 57e46be..9788a8a 100644 --- a/Classes/ExceptionHandler/ExceptionRenderingOptionsResolver.php +++ b/Classes/ExceptionHandler/ExceptionRenderingOptionsResolver.php @@ -67,7 +67,7 @@ protected function echoExceptionWeb($exception) self::throwWhenUsed(); } - protected function echoExceptionCli(Throwable $exception) + protected function echoExceptionCli(Throwable $exception, bool $exceptionWasLogged) { self::throwWhenUsed(); } diff --git a/README.md b/README.md index 019c24c..364a446 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Currently the following Flow versions are supported: * `^5.3` * `^6.3` -* `^7.0` +* `^7.3` * `^8.0` ## Setup diff --git a/composer.json b/composer.json index 595bcf5..27e34a8 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "license": "MIT", "require": { "php": "^7.2 || ^8.0", - "neos/flow": "^5.3 || ^6.3 || ^7.0 || ^8.0", + "neos/flow": "^5.3 || ^6.3 || ^7.3.6 || ^8.0.4", "sentry/sdk": "^3.1" }, "autoload": {