From caca9ede88bc1eed92ef1a55d0a491bbaed211e3 Mon Sep 17 00:00:00 2001 From: "lina.wolf" Date: Sat, 31 Aug 2024 10:08:19 +0200 Subject: [PATCH] [BUGFIX] Align requirements for Composer and legacy installs This also prevents TYPO3 Exception 1303237468 https://github.com/TYPO3-Documentation/t3docs-examples/pull/287 Releases: main, 12.4 --- ext_emconf.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ext_emconf.php b/ext_emconf.php index 9167476..9f02705 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -25,9 +25,12 @@ 'constraints' => [ 'depends' => [ 'typo3' => '13.1.0-13.4.99', - 'impexp' => '13.1.0-13.4.99', + 'extbase' => '13.1.0-13.4.99', + 'fluid' => '13.1.0-13.4.99', 'fluid_styled_content' => '13.1.0-13.4.99', + 'impexp' => '13.1.0-13.4.99', 'linkvalidator' => '13.1.0-13.4.99', + 'reactions' => '13.1.0-13.4.99', ], 'conflicts' => [], 'suggests' => [],