Skip to content

Commit

Permalink
[TASK] Declare compatible with PHP up to 8.3
Browse files Browse the repository at this point in the history
.. since TYPO3v11 itself is compatible with PHP 7.4-8.3
  • Loading branch information
cweiske authored and fnagel committed Dec 26, 2024
1 parent 4a0fee4 commit 6e8dab0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
php-versions: [7.4, 8.0, 8.1]
php-versions: [7.4, 8.0, 8.1, 8.2, 8.3]
typo3-versions: [11.5]

name: Run tests with PHP ${{ matrix.php-versions }} using TYPO3 ${{ matrix.typo3-versions }}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"fluid"
],
"require": {
"php": ">=7.4,<8.2",
"php": ">=7.4,<8.4",
"typo3/cms-core": ">=11.4.0,<=11.5.99"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'version' => '5.2.1-dev',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.1.99',
'php' => '7.4.0-8.3.99',
'typo3' => '11.4.0-11.5.99',
],
'suggests' => [
Expand Down

0 comments on commit 6e8dab0

Please sign in to comment.