From 994a8a2fa3caa8b97f12f204a91565552f1e5327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torben=20Br=C3=BCmmer?= Date: Fri, 7 May 2021 10:44:45 +0200 Subject: [PATCH] feat: update xdebug version to 3.0.4 (#141) --- docs/xdebug.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/xdebug.md b/docs/xdebug.md index 04d5d68..63563ea 100644 --- a/docs/xdebug.md +++ b/docs/xdebug.md @@ -12,7 +12,7 @@ it's recommended to add a custom stage to the end of the `Dockerfile`. # Dockerfile FROM symfony_php as symfony_php_debug -ARG XDEBUG_VERSION=3.0.1 +ARG XDEBUG_VERSION=3.0.4 RUN set -eux; \ apk add --no-cache --virtual .build-deps $PHPIZE_DEPS; \ pecl install xdebug-$XDEBUG_VERSION; \ @@ -60,4 +60,4 @@ Inspect the installation with the following command. The requested Xdebug versio $ docker-compose exec php php --version PHP ... - with Xdebug v3.0.1 ... + with Xdebug v3.0.4 ...