Last active
April 11, 2016 08:37
-
-
Save achristodoulou/5bcd05c07576aa62dfb0b15a974f72f0 to your computer and use it in GitHub Desktop.
Disable xdebug for composer only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| COMPOSER_DISABLE_XDEBUG_WARN=1 /usr/bin/php \ | |
| -d xdebug.remote_enable=0 -d xdebug.profiler_enable=0 \ | |
| -d xdebug.default_enable=0 /usr/local/bin/composer.phar "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment