From 587bacf67c1ea94f4534e5e96771e1016f0f3a1b Mon Sep 17 00:00:00 2001 From: "lina.wolf" Date: Sat, 31 Aug 2024 10:09:16 +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 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ext_emconf.php b/ext_emconf.php index 26921ed..5d3506c 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -20,17 +20,17 @@ 'author' => 'Documentation Team', 'author_email' => 'documentation@typo3.org', 'state' => 'stable', - 'uploadfolder' => 0, - 'createDirs' => '', - 'clearCacheOnLoad' => 0, 'author_company' => '', - 'version' => '12.0.5', + 'version' => '12.0.7', 'constraints' => [ 'depends' => [ - 'typo3' => '12.4.9-12.4.99', - 'fluid_styled_content' => '12.4.9-12.4.99', - 'impexp' => '12.4.9-12.4.99', - 'linkvalidator' => '12.4.9-12.4.99', + 'typo3' => '12.4.0-12.4.99', + 'extbase' => '12.4.0-12.4.99', + 'fluid' => '12.4.0-12.4.99', + 'fluid_styled_content' => '12.4.0-12.4.99', + 'impexp' => '12.4.0-12.4.99', + 'linkvalidator' => '12.4.0-12.4.99', + 'reactions' => '12.4.0-12.4.99', ], 'conflicts' => [], 'suggests' => [],