Skip to content

Commit

Permalink
Merge pull request #4 from CPS-IT/renovate/major-typo3-cms
Browse files Browse the repository at this point in the history
[FEATURE] Add support for TYPO3 13.0
  • Loading branch information
eliashaeussler authored Mar 22, 2024
2 parents cfe2f0b + bb433c0 commit 665845f
Show file tree
Hide file tree
Showing 6 changed files with 129 additions and 122 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ jobs:
fail-fast: false
matrix:
php-version: ["8.1", "8.2", "8.3"]
typo3-version: ["11.5", "12.4"]
typo3-version: ["11.5", "12.4", "13.0"]
dependencies: ["highest", "lowest"]
exclude:
- php-version: "8.1"
typo3-version: "13.0"
env:
typo3DatabaseName: typo3
typo3DatabaseHost: '127.0.0.1'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ console commands to list and flush the mail queue.
* Improved queueable file transport with failure metadata
* Backend module to list mails in queue
* Console command to list queue and flush mails
* Compatible with TYPO3 11.5 LTS and 12.4 LTS
* Compatible with TYPO3 11.5 LTS, 12.4 LTS and 13.0

## 🔥 Installation

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/mailer": "^5.4 || ^6.4 || ^7.0",
"symfony/mime": "^5.4 || ^6.4 || ^7.0",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-fluid": "^11.5 || ^12.4",
"typo3/cms-backend": "~11.5.0 || ~12.4.0 || ~13.0.0",
"typo3/cms-core": "~11.5.0 || ~12.4.0 || ~13.0.0",
"typo3/cms-fluid": "~11.5.0 || ~12.4.0 || ~13.0.0",
"typo3fluid/fluid": "^2.7"
},
"require-dev": {
Expand All @@ -33,9 +33,9 @@
"phpunit/phpcov": "^9.0 || ^10.0",
"saschaegerer/phpstan-typo3": "^1.10",
"ssch/typo3-rector": "^2.0",
"typo3/cms-lowlevel": "^11.5 || ^12.4",
"typo3/coding-standards": "^0.7.1",
"typo3/testing-framework": "^7.0.2 || ^8.0.1"
"typo3/cms-lowlevel": "~11.5.0 || ~12.4.0 || ~13.0.0",
"typo3/coding-standards": "^0.8.0@dev",
"typo3/testing-framework": "^7.0.2 || ^8.0.9"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 665845f

Please sign in to comment.