-
-
Save kenng/e694a5fa1c4753644518d099665869a9 to your computer and use it in GitHub Desktop.
Installing composer using curl
This file contains hidden or 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
# Goto a directory you can write to: | |
cd ~ | |
#get composer: | |
curl -s https://getcomposer.org/installer | php | |
# move composer into a bin directory you control: | |
sudo mv composer.phar /usr/local/bin/composer | |
# double check composer works | |
composer about | |
# (optional) Update composer: | |
sudo composer self-update |
thank ypu
Hi, just tried this on Terminal, but instead of installing Composer, I only got an entire PHP file's worth of content echoed in the terminal and nothing else. Can someone look into this?
Hi, just tried this on Terminal, but instead of installing Composer, I only got an entire PHP file's worth of content echoed in the terminal and nothing else. Can someone look into this?
you need to make composer (which is a PHP script) executable
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi