Skip to content

Commit 22741d0

Browse files
committed
Support php 8.4
1 parent 27e911f commit 22741d0

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Makefile

+5-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ endif
1414
DRUSH=$(EXEC) ./bin/drush
1515
DRUSH_INSTALL=$(DRUSH) -y site:install --account-pass=password
1616
GIT_SWITCH=cd app && git switch
17-
PHP_VERSION=8.3
17+
PHP_VERSION=8.4
1818

1919
clean: composer minimal login
2020

@@ -96,7 +96,7 @@ phpstan-baseline:
9696
$(GIT_SWITCH) 11.1.x
9797
make clean
9898

99-
11.x: php8.3
99+
11.x: php8.4
100100
$(GIT_SWITCH) 11.x
101101
make clean
102102

@@ -114,3 +114,6 @@ php8.2:
114114

115115
php8.3:
116116
make start -e PHP_VERSION=8.3
117+
118+
php8.4:
119+
make start -e PHP_VERSION=8.4

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Make commands should be executed on the host machine.
5454
* `phpstan` - runs phpstan for core
5555
* `phpstan-baseline` - generates phpstan baseline for core
5656
* `10.2|10.3|10.4|10.5|11.0|11.1|11.x` - provides a clean environment with the specified Drupal version
57-
* `php8.1|php8.2|php8.3` - starts the stack with the specified php version
57+
* `php8.1|php8.2|php8.3|php8.4` - starts the stack with the specified php version
5858

5959
## PhpStorm configuration
6060

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
php-fpm:
1818
build:
1919
args:
20-
BASE_IMAGE: skpr/php-fpm:${PHP_VERSION:-8.3}-dev-v2-latest
20+
BASE_IMAGE: skpr/php-fpm:${PHP_VERSION:-8.4}-dev-v2-latest
2121
USERNAME: ${USERNAME:-skpr}
2222
UID: ${UID:-1000}
2323
GID: ${GID:-1000}
@@ -32,7 +32,7 @@ services:
3232
php-cli:
3333
build:
3434
args:
35-
BASE_IMAGE: skpr/php-cli:${PHP_VERSION:-8.3}-dev-v2-latest
35+
BASE_IMAGE: skpr/php-cli:${PHP_VERSION:-8.4}-dev-v2-latest
3636
USERNAME: ${USERNAME:-skpr}
3737
UID: ${UID:-1000}
3838
GID: ${GID:-1000}

0 commit comments

Comments
 (0)