Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] Add support for TYPO3 13.0 #4

Merged
merged 8 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading