Skip to content

Upgrade to PHP 8.4.0RC2 and install Xdebug #212

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading