From f4713fb8b55abdda63433fb857f4e852edb60ddf Mon Sep 17 00:00:00 2001 From: Falko Linke Date: Wed, 13 Jul 2022 16:10:35 +0200 Subject: [PATCH] [TASK] update vesion and version contraints * remove v9 and v10 compatability --- README.md | 6 ++++-- composer.json | 6 +++--- ext_emconf.php | 4 ++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4c25a6a..066adb9 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ finishers will be aware of the copied field(s). Copy the extension folder to `\typo3conf\ext\ `, upload it via the extension manager or add it to your composer.json. Add the static TypoScript configuration to your TypoScript template. Make sure, jQuery is available in the frontend. -We have tested with TYPO3 v8 and v9 and jQuery v2.2.4. +We have tested with TYPO3 v11 and jQuery v2.2.4. ## Usage @@ -35,4 +35,6 @@ This TYPO3 extension was created by Ralf Zimmermann (https://www.tritum.de). ## Thank you Nora Winter - "Faktenkopf" at www.faktenhaus.de - sponsored this great extension. -The fine people at www.b13.de connected all the people involved. \ No newline at end of file +The fine people at www.b13.de connected all the people involved. + +Elias Häußler - haeussler.dev - for helping with TYPO3v11 compatability. \ No newline at end of file diff --git a/composer.json b/composer.json index 3b41e07..30575c6 100644 --- a/composer.json +++ b/composer.json @@ -3,9 +3,9 @@ "description": "", "type": "typo3-cms-extension", "require": { - "typo3/cms-core": "^9.5.25 || ^10.4.14 || 11.*.*@dev", - "typo3/cms-extbase": "^9.5.25 || ^10.4.14 || 11.*.*@dev", - "typo3/cms-form": "^9.5.25 || ^10.4.14 || 11.*.*@dev" + "typo3/cms-core": "11.5.13", + "typo3/cms-extbase": "^11.5.13", + "typo3/cms-form": "^11.5.13" }, "extra": { "typo3/cms": { diff --git a/ext_emconf.php b/ext_emconf.php index c6d20ed..9e7e401 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -9,10 +9,10 @@ 'clearCacheOnLoad' => 0, 'author' => 'Ralf Zimmermann TRITUM GmbH', 'author_email' => 'ralf.zimmermann@tritum.de', - 'version' => '2.0.2', + 'version' => '3.0.0', 'constraints' => [ 'depends' => [ - 'typo3' => '9.5.25-11.99.99', + 'typo3' => '11.5.13-11.99.99', ], 'conflicts' => [], 'suggests' => [],