Skip to content

Commit 447bda9

Browse files
author
Raffael Tancman
committed
corrigindo chamada ao xdebug
1 parent 23c6b9d commit 447bda9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

php-5.5/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ RUN echo ";zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)
6969

7070
# resolve impact xdebug in composer https://getcomposer.org/doc/articles/troubleshooting.md#xdebug-impact-on-composer
7171
RUN echo "# Load xdebug Zend extension with php command" >> ~/.bashrc
72-
RUN echo "alias php='php -dzend_extension=xdebug.so'" >> ~/.bashrc
72+
RUN echo "alias php='php -dzend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20131226/xdebug.so'" >> ~/.bashrc
7373
RUN echo "# PHPUnit needs xdebug for coverage. In this case, just make an alias with php command prefix." >> ~/.bashrc
7474
RUN echo "alias phpunit='php $(which phpunit)'" >> ~/.bashrc
7575

php-5.6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ RUN echo ";zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)
7171

7272
# resolve impact xdebug in composer https://getcomposer.org/doc/articles/troubleshooting.md#xdebug-impact-on-composer
7373
RUN echo "# Load xdebug Zend extension with php command" >> ~/.bashrc
74-
RUN echo "alias php='php -dzend_extension=xdebug.so'" >> ~/.bashrc
74+
RUN echo "alias php='php -dzend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20131226/xdebug.so'" >> ~/.bashrc
7575
RUN echo "# PHPUnit needs xdebug for coverage. In this case, just make an alias with php command prefix." >> ~/.bashrc
7676
RUN echo "alias phpunit='php $(which phpunit)'" >> ~/.bashrc
7777

php-7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ xdebug.remote_log=\"/var/log/xdebug.log\"" >> /usr/local/etc/php/conf.d/xdebug.i
7070

7171
# resolve impact xdebug in composer https://getcomposer.org/doc/articles/troubleshooting.md#xdebug-impact-on-composer
7272
RUN echo "# Load xdebug Zend extension with php command" >> ~/.bashrc
73-
RUN echo "alias php='php -dzend_extension=xdebug.so'" >> ~/.bashrc
73+
RUN echo "alias php='php -dzend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20131226/xdebug.so'" >> ~/.bashrc
7474
RUN echo "# PHPUnit needs xdebug for coverage. In this case, just make an alias with php command prefix." >> ~/.bashrc
7575
RUN echo "alias phpunit='php $(which phpunit)'" >> ~/.bashrc
7676

0 commit comments

Comments
 (0)