Skip to content

Commit

Permalink
corrigindo chamada ao xdebug
Browse files Browse the repository at this point in the history
  • Loading branch information
Raffael Tancman committed Aug 11, 2016
1 parent 23c6b9d commit 447bda9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion php-5.5/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ RUN echo ";zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)

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

Expand Down
2 changes: 1 addition & 1 deletion php-5.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ RUN echo ";zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)

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

Expand Down
2 changes: 1 addition & 1 deletion php-7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ xdebug.remote_log=\"/var/log/xdebug.log\"" >> /usr/local/etc/php/conf.d/xdebug.i

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

Expand Down

0 comments on commit 447bda9

Please sign in to comment.