Skip to content

Instantly share code, notes, and snippets.

@orasik
Forked from vinaydotblog/composer-install.sh
Created March 1, 2017 14:04
Show Gist options
  • Save orasik/fb2f1285c9970943a8cac3f6ac47e3ae to your computer and use it in GitHub Desktop.
Save orasik/fb2f1285c9970943a8cac3f6ac47e3ae to your computer and use it in GitHub Desktop.
Installing composer using curl
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment