Skip to content

Instantly share code, notes, and snippets.

@alex-moreno
Created July 8, 2014 08:33
Show Gist options
  • Save alex-moreno/246cd262fcf53e4a5ca7 to your computer and use it in GitHub Desktop.
Save alex-moreno/246cd262fcf53e4a5ca7 to your computer and use it in GitHub Desktop.
Installing composer in OSX
curl -sS https://getcomposer.org/installer | php;
sudo mv composer.phar /usr/bin/
vim ~/.bash_profile
# add this in ~/.bash_profile
# alias composer="php /usr/bin/composer.phar"
# reboot console
# Original post: http://www.abeautifulsite.net/blog/2013/09/installing-composer-on-os-x/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment