Merge pull request #52 from chialab/issue/49-update-xdebug

Update XDebug to stable channel for PHP 7.3
This commit is contained in:
Paolo Cuffiani
2019-03-13 12:42:47 +01:00
committed by GitHub
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -31,8 +31,8 @@ env:
install:
- travis_wait 30 make build VERSION=${VERSION}
- if [ "$NO_DEV" != "1" ]; then travis_wait 30 make -C dev build VERSION=${VERSION}; fi
- if [ "$NO_DEV" != "1" ]; then make -C dev build VERSION=${VERSION}; fi
script:
- make test VERSION=${VERSION}
- if [ "$NO_DEV" != "1" ]; then travis_wait 30 make -C dev test VERSION=${VERSION}; fi
- if [ "$NO_DEV" != "1" ]; then make -C dev test VERSION=${VERSION}; fi
+1 -1
View File
@@ -2,5 +2,5 @@ FROM chialab/php:7.3
LABEL maintainer="dev@chialab.io"
# Install XDebug.
RUN pecl install xdebug-2.7.0beta1 \
RUN pecl install xdebug \
&& echo "zend_extension=\"$(php-config --extension-dir)/xdebug.so\"" > $PHP_INI_DIR/conf.d/xdebug.ini
+1 -1
View File
@@ -2,5 +2,5 @@ FROM chialab/php:7.3-apache
LABEL maintainer="dev@chialab.io"
# Install XDebug.
RUN pecl install xdebug-2.7.0beta1 \
RUN pecl install xdebug \
&& echo "zend_extension=\"$(php-config --extension-dir)/xdebug.so\"" > $PHP_INI_DIR/conf.d/xdebug.ini
+1 -1
View File
@@ -2,5 +2,5 @@ FROM chialab/php:7.3-fpm
LABEL maintainer="dev@chialab.io"
# Install XDebug.
RUN pecl install xdebug-2.7.0beta1 \
RUN pecl install xdebug \
&& echo "zend_extension=\"$(php-config --extension-dir)/xdebug.so\"" > $PHP_INI_DIR/conf.d/xdebug.ini
+1 -1
View File
@@ -2,5 +2,5 @@ FROM chialab/php:latest
LABEL maintainer="dev@chialab.io"
# Install XDebug.
RUN pecl install xdebug-2.7.0beta1 \
RUN pecl install xdebug \
&& echo "zend_extension=\"$(php-config --extension-dir)/xdebug.so\"" > $PHP_INI_DIR/conf.d/xdebug.ini