Last active
October 19, 2016 17:16
-
-
Save yvh/e47279f2cdb7b4d46f121def8600019c to your computer and use it in GitHub Desktop.
Run composer without xdebug
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/bash | |
# Author Yannick Vanhaeren | |
# Version 1.0 | |
COMPOSER_DISABLE_XDEBUG_WARN=1 \ | |
`which php` -d xdebug.remote_enable=0 -d xdebug.profiler_enable=0 \ | |
-d xdebug.default_enable=0 `which composer` "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment