Skip to content

Commit

Permalink
[FEATURE] Add support for PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee committed Jan 16, 2024
1 parent 4f2dd66 commit 86e45d0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/core11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# rest matrix jobs be executed anyway.
fail-fast: false
matrix:
php: [ '7.4', '8.0', '8.1', '8.2' ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
composerInstall: [ 'composerInstallLowest', 'composerInstallHighest' ]
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# rest matrix jobs be executed anyway.
fail-fast: false
matrix:
php: [ '8.1', '8.2' ]
php: [ '8.1', '8.2', '8.3' ]
composerInstall: [ 'composerInstallLowest', 'composerInstallHighest' ]
steps:
- name: Checkout
Expand Down
5 changes: 3 additions & 2 deletions Build/Scripts/runTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,13 @@ Options:
- 13
- 14
-p <7.4|8.0|8.1|8.2>
-p <7.4|8.0|8.1|8.2|8.3>
Specifies the PHP minor version to be used
- 7.4 (default): use PHP 7.4
- 8.0: use PHP 8.0
- 8.1: use PHP 8.1
- 8.2: use PHP 8.2
- 8.3: use PHP 8.3
-t <11|12>
Only with -s composerUpdate
Expand Down Expand Up @@ -266,7 +267,7 @@ while getopts ":s:a:d:i:j:k:p:t:e:xy:z:nhuv" OPT; do
;;
p)
PHP_VERSION=${OPTARG}
if ! [[ ${PHP_VERSION} =~ ^(7.4|8.0|8.1|8.2)$ ]]; then
if ! [[ ${PHP_VERSION} =~ ^(7.4|8.0|8.1|8.2|8.3)$ ]]; then
INVALID_OPTIONS+=("p ${OPTARG}")
fi
;;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
],
"require": {
"typo3/cms-core": "^11.5.24 || ^12.4.0",
"php": ">= 7.4 < 8.3"
"php": ">= 7.4 < 8.4"
},
"suggest": {
"reelworx/rx-shariff": "GDPR compliant social sharing",
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'constraints' => [
'depends' => [
'typo3' => '11.5.19-12.9.99',
'php' => '7.4.0-8.2.99',
'php' => '7.4.0-8.3.99',
],
'conflicts' => [],
'suggests' => [
Expand Down

0 comments on commit 86e45d0

Please sign in to comment.