Skip to content

Commit

Permalink
[TASK] Allow php 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
georgringer committed Jul 2, 2024
1 parent a076c9b commit 1ad480f
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit 1ad480f

Please sign in to comment.