Skip to content

Commit

Permalink
Merge pull request #212 from GrahamCampbell/php-84
Browse files Browse the repository at this point in the history
Upgrade to PHP 8.4.0RC2 and install Xdebug
  • Loading branch information
mnapoli authored Oct 17, 2024
2 parents d6247aa + 3b64a92 commit 7941995
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions layers/fpm-dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ ARG PHP_VERSION
RUN mkdir -p /opt/bref/extensions

# Install xdebug
RUN if [ $PHP_VERSION != "84" ]; then pecl install xdebug; fi
RUN if [ $PHP_VERSION != "84" ]; then cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions; fi
run if [[ $PHP_VERSION != "84" ]]; then pecl install xdebug-3.3.2; else pecl install xdebug-3.4.0beta1; fi
RUN cp $(php -r "echo ini_get('extension_dir');")/xdebug.so /opt/bref/extensions

# Install Blackfire
# https://blackfire.io/docs/up-and-running/installation?action=install&mode=full&version=latest&mode=full&location=server&os=manual&language=php#install-the-php-probe
Expand Down
4 changes: 2 additions & 2 deletions php-84/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
ARG IMAGE_VERSION_SUFFIX

# https://www.php.net/downloads
ARG RELEASE_USER_PHP=saki
ARG VERSION_PHP=8.4.0RC1
ARG RELEASE_USER_PHP=calvinb
ARG VERSION_PHP=8.4.0RC2


# Lambda uses a custom AMI named Amazon Linux 2
Expand Down

0 comments on commit 7941995

Please sign in to comment.