Skip to content

Commit eff8fac

Browse files
committed
CI - add php 8.3, 8.4
1 parent 99bc9e5 commit eff8fac

3 files changed

Lines changed: 11 additions & 0 deletions

File tree

.docker/build-image

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ load_docker_variables () {
3131
COMPOSER_VERSION="1.8.0"
3232
elif [[ $PHP_VERSION == "8.1" ]]; then
3333
COMPOSER_VERSION="2.2.12"
34+
elif [[ $PHP_VERSION == "8.2" ]]; then
35+
COMPOSER_VERSION="2.2.19"
36+
elif [[ $PHP_VERSION == "8.3" ]]; then
37+
COMPOSER_VERSION="2.3"
38+
elif [[ $PHP_VERSION == "8.4" ]]; then
39+
COMPOSER_VERSION="2.8.9"
3440
else
3541
echo "PHP version $PHP_VERSION not supported"
3642
exit 1

.github/workflows/docker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ jobs:
2424
run: |
2525
PHP_VERSION=7.2 .docker/build-image
2626
PHP_VERSION=8.1 .docker/build-image
27+
PHP_VERSION=8.2 .docker/build-image
28+
PHP_VERSION=8.3 .docker/build-image
29+
PHP_VERSION=8.4 .docker/build-image

.github/workflows/php.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
- { php: 8.0, areSuggestedToolsInstalled: yes, allowedSecurityErrors: 1 }
2828
- { php: 8.1, areSuggestedToolsInstalled: yes }
2929
- { php: 8.2, areSuggestedToolsInstalled: yes }
30+
- { php: 8.3, areSuggestedToolsInstalled: yes }
31+
- { php: 8.4, areSuggestedToolsInstalled: yes }
3032
stability: [prefer-stable]
3133

3234
steps:

0 commit comments

Comments
 (0)