Skip to content

Instantly share code, notes, and snippets.

@perk11
Last active February 26, 2016 21:22
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save perk11/816c4e64023ea26976cf to your computer and use it in GitHub Desktop.
Save perk11/816c4e64023ea26976cf to your computer and use it in GitHub Desktop.
#!/bin/sh
temporaryPath="$(mktemp -t php-no-debug.XXXX)"
find /etc/php5/cli/php.ini /etc/php5/cli/conf.d/*.ini ! -name 20-xdebug.ini | xargs cat > "$temporaryPath"
/usr/bin/php -n -c "$temporaryPath" "$@"
rm -f "$temporaryPath"
@perk11
Copy link
Author

perk11 commented Jan 30, 2016

You can then do things like alias composer='/home/user/bin/php-no-xdebug' /path/to/composer.phar

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment