Created
July 8, 2014 08:33
-
-
Save alex-moreno/246cd262fcf53e4a5ca7 to your computer and use it in GitHub Desktop.
Installing composer in OSX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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