Skip to content

Instantly share code, notes, and snippets.

@achristodoulou
Last active April 11, 2016 08:37
Show Gist options
  • Save achristodoulou/5bcd05c07576aa62dfb0b15a974f72f0 to your computer and use it in GitHub Desktop.
Save achristodoulou/5bcd05c07576aa62dfb0b15a974f72f0 to your computer and use it in GitHub Desktop.
Disable xdebug for composer only
#!/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