Skip to content

Instantly share code, notes, and snippets.

View stevensherah's full-sized avatar

Stevensherah stevensherah

  • uni-teq company limited
  • Kenya
View GitHub Profile
@stevensherah
stevensherah / composer-install.sh
Created October 12, 2018 14:08 — forked from vinaydotblog/composer-install.sh
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