Skip to content

Commit

Permalink
Merge branch 'release/6.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Oct 18, 2022
2 parents d531d52 + 7070f38 commit 8544b45
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
6 changes: 4 additions & 2 deletions Classes/Controller/TypoScriptController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php
namespace In2code\Typoscript2ce\Controller;

use Psr\Http\Message\ResponseInterface;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;

/**
Expand All @@ -9,9 +10,10 @@
class TypoScriptController extends ActionController
{
/**
* @return void
* @return ResponseInterface
*/
public function indexAction()
public function indexAction(): ResponseInterface
{
return $this->htmlResponse();
}
}
8 changes: 8 additions & 0 deletions Configuration/Services.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
services:
_defaults:
autowire: true
autoconfigure: true
public: false

In2code\Typoscript2ce\:
resource: '../Classes/*'
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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... |
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' => [],
Expand Down
2 changes: 1 addition & 1 deletion ext_localconf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
if (!defined('TYPO3_MODE')) {
if (!defined('TYPO3')) {
die('Access denied.');
}

Expand Down

0 comments on commit 8544b45

Please sign in to comment.