From 1ad480f955161081a0c0c2d5531354653c65d1c3 Mon Sep 17 00:00:00 2001 From: Georg Ringer Date: Tue, 2 Jul 2024 14:03:29 +0200 Subject: [PATCH] [TASK] Allow php 8.3 --- Build/Scripts/runTests.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Build/Scripts/runTests.sh b/Build/Scripts/runTests.sh index e0845df..c7408e5 100755 --- a/Build/Scripts/runTests.sh +++ b/Build/Scripts/runTests.sh @@ -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 @@ -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 ;;