Skip to content

Commit

Permalink
[TASK] Declare compatibility with TYPO3 v12 (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott authored May 26, 2023
1 parent e2bb2aa commit f2e4965
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,18 @@ jobs:
strategy:
fail-fast: false
matrix:
typo3: ['^11']
typo3: ['^11', '^12']
php: ['7.4', '8.0', '8.1', '8.2']
mysql: ['5.7']

mysql: ['5.7', '8.0']
exclude:
- typo3: '^11'
mysql: '8.0'
- typo3: '^12'
mysql: '5.7'
- typo3: '^12'
php: '7.4'
- typo3: '^12'
php: '8.0'
steps:
- id: checkout
name: Checkout Code
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
'version' => '12.0.0-dev',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-11.5.99',
'form' => '11.5.0-11.5.99',
'typo3' => '11.5.0-12.4.99',
'form' => '11.5.0-12.4.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit f2e4965

Please sign in to comment.