Skip to content

Commit 8e64666

Browse files
authored
Merge pull request #307 from GrahamCampbell/v3-bump-php
[3.x] Bump to latest PHP versions
2 parents c5e719d + 31636f5 commit 8e64666

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

php-82/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG IMAGE_VERSION_SUFFIX
55

66
# https://www.php.net/downloads
7-
ARG VERSION_PHP=8.2.29
7+
ARG VERSION_PHP=8.2.30
88

99

1010
# Lambda uses a custom AMI named Amazon Linux 2023
@@ -238,7 +238,7 @@ FROM build-environment as build_dev
238238
RUN mkdir -p /opt/bref/extensions
239239

240240
# Install xdebug
241-
RUN pecl install xdebug-3.4.7
241+
RUN pecl install xdebug-3.5.0
242242
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
243243

244244

php-83/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG IMAGE_VERSION_SUFFIX
55

66
# https://www.php.net/downloads
7-
ARG VERSION_PHP=8.3.28
7+
ARG VERSION_PHP=8.3.29
88

99

1010
# Lambda uses a custom AMI named Amazon Linux 2023
@@ -238,7 +238,7 @@ FROM build-environment as build_dev
238238
RUN mkdir -p /opt/bref/extensions
239239

240240
# Install xdebug
241-
RUN pecl install xdebug-3.4.7
241+
RUN pecl install xdebug-3.5.0
242242
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
243243

244244

php-84/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG IMAGE_VERSION_SUFFIX
55

66
# https://www.php.net/downloads
7-
ARG VERSION_PHP=8.4.15
7+
ARG VERSION_PHP=8.4.16
88

99

1010
# Lambda uses a custom AMI named Amazon Linux 2023
@@ -237,7 +237,7 @@ FROM build-environment as build_dev
237237
RUN mkdir -p /opt/bref/extensions
238238

239239
# Install xdebug
240-
RUN pecl install xdebug-3.4.7
240+
RUN pecl install xdebug-3.5.0
241241
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
242242

243243

php-85/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG IMAGE_VERSION_SUFFIX
55

66
# https://www.php.net/downloads
7-
ARG VERSION_PHP=8.5.0
7+
ARG VERSION_PHP=8.5.1
88

99

1010
# Lambda uses a custom AMI named Amazon Linux 2023
@@ -237,9 +237,8 @@ FROM build-environment as build_dev
237237
RUN mkdir -p /opt/bref/extensions
238238

239239
# Install xdebug
240-
# TODO xdebug is not available for PHP 8.5 yet
241-
#RUN pecl install xdebug-3.4.2
242-
#RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
240+
RUN pecl install xdebug-3.5.0
241+
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions
243242

244243

245244
FROM function as dev

0 commit comments

Comments
 (0)