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 Feb 4, 2024
1 parent a67cc0d commit 738caa3
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,14 @@ jobs:
typo3-versions: ^11
- php-versions: 8.2
typo3-versions: ^12
- php-versions: 8.2
typo3-versions: ^13
- php-versions: 8.3
typo3-versions: ^11
- php-versions: 8.3
typo3-versions: ^12
- php-versions: 8.3
typo3-versions: ^13
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
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

## [1.4.0] - 2024-01-16

### Added
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/brotkrueml/typo3-form-rate-limit/compare/v1.4.0...HEAD>`_
---------------------------------------------------------------------------------------------

Added
^^^^^


* Compatibility with TYPO3 v13

`1.4.0 <https://github.com/brotkrueml/typo3-form-rate-limit/compare/v1.3.1...v1.4.0>`_ - 2024-01-16
-------------------------------------------------------------------------------------------------------

Expand Down
3 changes: 2 additions & 1 deletion Documentation/Installation/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Installation
Target group: **Administrators**

.. note::
The extension in version |version| supports TYPO3 v11 LTS and TYPO3 v12.
The extension in version |version| supports TYPO3 v11 LTS, TYPO3 v12 LTS and
TYPO3 v13.

The recommended way to install this extension is by using Composer. In your
Composer-based TYPO3 project root, just type:
Expand Down
10 changes: 6 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"php": ">=7.4",
"ext-json": "*",
"symfony/rate-limiter": "^5.4 || ^6.4 || ^7.0",
"typo3/cms-core": "^11.5.3 || ^12.4",
"typo3/cms-fluid": "^11.5.3 || ^12.4",
"typo3/cms-form": "^11.5.3 || ^12.4"
"typo3/cms-core": "^11.5.3 || ^12.4 || ^13.0",
"typo3/cms-fluid": "^11.5.3 || ^12.4 || ^13.0",
"typo3/cms-form": "^11.5.3 || ^12.4 || ^13.0"
},
"require-dev": {
"brotkrueml/coding-standards": "~3.0.0",
Expand All @@ -32,8 +32,10 @@
"symfony/yaml": "^5.4 || ^6.4 || ^7.0",
"symplify/phpstan-rules": "^12.4",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"typo3/cms-install": "^11.5.3 || ^12.4"
"typo3/cms-install": "^11.5.3 || ^12.4 || ^13.0"
},
"minimum-stability": "RC",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Brotkrueml\\FormRateLimit\\": "Classes"
Expand Down
6 changes: 3 additions & 3 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
'version' => '1.5.0-dev',
'constraints' => [
'depends' => [
'typo3' => '11.5.3-12.4.99',
'fluid' => '11.5.3-12.4.99',
'form' => '11.5.3-12.4.99',
'typo3' => '11.5.3-13.4.99',
'fluid' => '11.5.3-13.4.99',
'form' => '11.5.3-13.4.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit 738caa3

Please sign in to comment.