diff --git a/Classes/Controller/TypoScriptController.php b/Classes/Controller/TypoScriptController.php index fd08ba5..1d91bc3 100644 --- a/Classes/Controller/TypoScriptController.php +++ b/Classes/Controller/TypoScriptController.php @@ -1,6 +1,7 @@ htmlResponse(); } } diff --git a/Configuration/Services.yaml b/Configuration/Services.yaml new file mode 100644 index 0000000..b4e3880 --- /dev/null +++ b/Configuration/Services.yaml @@ -0,0 +1,8 @@ +services: + _defaults: + autowire: true + autoconfigure: true + public: false + + In2code\Typoscript2ce\: + resource: '../Classes/*' diff --git a/README.md b/README.md index f315172..5f3ba2f 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ You can enable caching for the plugin in the extension manager settings, if you | Version | Date | State | Description | | ---------- | ---------- | ---------- | ---------------------------------------------------------------------------- | +| 6.0.0 | 2022-10-18 | Task | Add TYPO3 12 and drop TYPO3 10 compatibility | | 5.0.0 | 2021-05-06 | Task | Add TYPO3 11 compatibility | | 4.0.1 | 2021-03-17 | Task | Add extension key to composer.json | | 4.0.0 | 2021-01-26 | Task | Modernizing update (new icon, auto releases, reduced technical dept, etc... | diff --git a/composer.json b/composer.json index 0ba4091..5e328b3 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "type": "typo3-cms-extension", "license": "GPL-3.0", "require": { - "typo3/cms-core": ">=10.4.0 <12.0.0" + "typo3/cms-core": "^11.5 || ^12.0" }, "replace": { "typo3-ter/typoscript2ce": "self.version" diff --git a/ext_emconf.php b/ext_emconf.php index 760a0ad..560b2a3 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,14 +4,14 @@ 'title' => 'typoscript2contentelement', 'description' => 'typoscript2contentelement allows you to show the result of typoscript (e.g. HMENU) as a contentelement - a simple thing...', 'category' => 'plugin', - 'version' => '5.0.0', + 'version' => '6.0.0', 'state' => 'stable', 'author' => 'Alex Kellner', 'author_email' => 'alexander.kellner@in2code.de', 'author_company' => 'in2code.de', 'constraints' => [ 'depends' => [ - 'typo3' => '10.0.0-11.5.99' + 'typo3' => '11.5.0-12.4.99' ], 'conflicts' => [], 'suggests' => [], diff --git a/ext_localconf.php b/ext_localconf.php index 7b17972..dc8bc09 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -1,5 +1,5 @@