Skip to content

Instantly share code, notes, and snippets.

@mindesik
Last active May 21, 2016 18:19
Show Gist options
  • Save mindesik/eab620cbef0c0db24e1e43c063d1fba4 to your computer and use it in GitHub Desktop.
Save mindesik/eab620cbef0c0db24e1e43c063d1fba4 to your computer and use it in GitHub Desktop.
Various .bash_aliases.sh functions
# Disable xdebug when using composer
function composer() { COMPOSER="$(which composer)" || { echo "Could not find composer in path" >&2 ; return 1 ; } && sudo phpdismod -s cli xdebug ; $COMPOSER "$@" ; STATUS=$? ; sudo phpenmod -s cli xdebug ; return $STATUS ; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment