Skip to content

Instantly share code, notes, and snippets.

@tristanlins
Last active December 11, 2015 10:09
Show Gist options
  • Save tristanlins/4584976 to your computer and use it in GitHub Desktop.
Save tristanlins/4584976 to your computer and use it in GitHub Desktop.
~/bin/composer
#!/bin/bash
if [[ ! -f $HOME/workspace/composer.phar ]]; then
mkdir -p $HOME/workspace
curl -s https://getcomposer.org/installer | php -- --install-dir=$HOME/workspace
fi
php $HOME/workspace/composer.phar "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment