From ef541aeac0b854599b2c4337f138b6a8f47b2d69 Mon Sep 17 00:00:00 2001 From: Philipp Kitzberger Date: Mon, 1 Dec 2025 12:23:49 +0100 Subject: [PATCH 1/2] Raise version constraints --- composer.json | 2 +- ext_emconf.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index eee2bdf..49449ed 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "TYPO3 CMS" ], "require": { - "typo3/cms-core": "^10.4 || ^11.5" + "typo3/cms-core": "^10.4 || ^11.5 || ^12.4 || ^13.4" }, "autoload": { "psr-4": { diff --git a/ext_emconf.php b/ext_emconf.php index d740828..b293d02 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -14,7 +14,7 @@ 'version' => '4.0.1', 'constraints' => [ 'depends' => [ - 'typo3' => '10.4.0-11.5.99', + 'typo3' => '10.4.0-13.4.99', ], 'conflicts' => [], 'suggests' => [], From 254afe7d321631fa9313ca3b34e2b958a5da193c Mon Sep 17 00:00:00 2001 From: Denis Lorch Date: Fri, 23 Jan 2026 13:04:17 +0100 Subject: [PATCH 2/2] Fix fox_handler ext conf fetch php warning * $GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['fox_handler'] might not be available, but the error handler config * Fix: PHP Warning: Undefined array key "fox_handler" in /app/vendor/kitzberger/fox-handler/Classes/ErrorHandler.php line 141 --- Classes/ErrorHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/ErrorHandler.php b/Classes/ErrorHandler.php index fd90a64..314ed5d 100644 --- a/Classes/ErrorHandler.php +++ b/Classes/ErrorHandler.php @@ -138,7 +138,7 @@ protected function getPageUid_403($fe_group) protected function getExtConf() { if (is_null($this->extConf)) { - $this->extConf = $GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['fox_handler']; + $this->extConf = $GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']['fox_handler'] ?? []; } return $this->extConf;