Skip to content

Commit

Permalink
feat: add compatibility with TYPO3 v13
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Aug 27, 2024
1 parent a86667e commit 2b32541
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- Compatibility with TYPO3 v13

### Removed
- Compatibility with TYPO3 v11
- Language variables `{__language.twoLetterIsoCode}` and `{__language.direction}`
Expand Down
6 changes: 6 additions & 0 deletions Documentation/Changelog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
`Unreleased <https://github.com/jobrouter/typo3-base/compare/v3.0.0...HEAD>`_
---------------------------------------------------------------------------------

Added
^^^^^


* Compatibility with TYPO3 v13

Removed
^^^^^^^

Expand Down
7 changes: 5 additions & 2 deletions Documentation/Installation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ Target group: **Administrators**
Requirements
============

The extension in version |version| is available for TYPO3 v11 LTS and TYPO3 v12
LTS.
.. note::
The extension in version |release| supports TYPO3 v12 LTS and TYPO3 v13. Use
an older version for compatibility with TYPO3 v11 LTS and TYPO3 v10 LTS.


.. _version-matrix:
Expand All @@ -28,6 +29,8 @@ Version matrix
============== ========== ===========
JobRouter Base PHP TYPO3
============== ========== ===========
4.0 8.1 - 8.4 12.4 - 13.4
-------------- ---------- -----------
3.0 8.1 - 8.3 11.5 / 12.4
-------------- ---------- -----------
2.0 8.1 - 8.3 11.5 / 12.4
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ This TYPO3 extension acts as a base library for:

| Latest release | TYPO3 | PHP | Updates will contain |
|----------------|-------------|-------|------------------------------------------------|
| 3.x | 11.5 / 12.4 | ≥ 8.1 | Features, bug and security fixes |
| 4.x | 12.4 - 13.4 | ≥ 8.1 | Features, bug and security fixes |
| 3.x | 11.5 / 12.4 | ≥ 8.1 | Bug and security fixes |
| 2.x | 11.5 / 12.4 | ≥ 8.1 | Security fixes, end of life expected: Dec 2024 |
| 1.x | 10.4 / 11.5 | ≥ 7.4 | Security fixes, end of life expected: Dec 2024 |

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"require": {
"php": ">=8.1",
"typo3/cms-core": "^12.4"
"typo3/cms-core": "^12.4 || ^13.2"
},
"require-dev": {
"brotkrueml/coding-standards": "~5.1.0",
Expand All @@ -33,9 +33,9 @@
"symfony/yaml": "^6.4 || ^7.0",
"symplify/phpstan-rules": "^13.0",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"typo3/cms-dashboard": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-form": "^12.4"
"typo3/cms-dashboard": "^12.4 || ^13.2",
"typo3/cms-extbase": "^12.4 || ^13.2",
"typo3/cms-form": "^12.4 || ^13.2"
},
"suggest": {
"jobrouter/typo3-data": "Synchronise and transmit to JobData tables",
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
'constraints' => [
'depends' => [
'php' => '8.1.0-0.0.0',
'typo3' => '12.4.0-12.4.99',
'typo3' => '12.4.0-13.4.99',
],
'conflicts' => [],
'suggests' => [
Expand Down

0 comments on commit 2b32541

Please sign in to comment.