Skip to content

Instantly share code, notes, and snippets.

@yvh
Last active October 19, 2016 17:16
Show Gist options
  • Save yvh/e47279f2cdb7b4d46f121def8600019c to your computer and use it in GitHub Desktop.
Save yvh/e47279f2cdb7b4d46f121def8600019c to your computer and use it in GitHub Desktop.
Run composer without xdebug
#!/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