Fix xdebug install for PHP 7.0

This commit is contained in:
cytopia
2020-01-17 09:37:59 +01:00
parent 47800a7ede
commit af150ba371
3 changed files with 11 additions and 2 deletions

View File

@@ -659,10 +659,10 @@ RUN set -eux \
# -------------------- Installing PHP Extension: xdebug --------------------
RUN set -eux \
# Installation: Generic
# Installation: Version specific
# Type: PECL extension
# Default: Pecl command
&& pecl install xdebug \
&& pecl install xdebug-2.9.0 \
# Enabling
&& docker-php-ext-enable xdebug \
&& true