Skip to content

Commit b733f17

Browse files
committed
[TASK] Verify compatibility with PHP 8.4
1 parent 23e3c1e commit b733f17

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Build/Scripts/runTests.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,11 +202,12 @@ Options:
202202
- 15 maintained until 2027-11-11
203203
- 16 maintained until 2028-11-09
204204
205-
-p <8.1|8.2|8.3>
205+
-p <8.1|8.2|8.3|8.4>
206206
Specifies the PHP minor version to be used
207207
- 8.1: (default) use PHP 8.1
208208
- 8.2: use PHP 8.2
209209
- 8.3: use PHP 8.3
210+
- 8.4: use PHP 8.4
210211
211212
-x
212213
Only with -s functional|unit
@@ -291,7 +292,7 @@ while getopts "a:b:d:i:s:p:xy:nhu" OPT; do
291292
;;
292293
p)
293294
PHP_VERSION=${OPTARG}
294-
if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3)$ ]]; then
295+
if ! [[ ${PHP_VERSION} =~ ^(8.1|8.2|8.3|8.4)$ ]]; then
295296
INVALID_OPTIONS+=("p ${OPTARG}")
296297
fi
297298
;;

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-12-07 Francois Suter (Idéative) <[email protected]>
2+
3+
* Verify compatibility with PHP 8.4
4+
15
2024-12-06 Francois Suter (Idéative) <[email protected]>
26

37
* Automate documentation and code linting

0 commit comments

Comments
 (0)