Skip to content

Instantly share code, notes, and snippets.

View PaulKish's full-sized avatar

Paul Ngumii PaulKish

View GitHub Profile
@PaulKish
PaulKish / install-composer.sh
Last active June 24, 2016 12:17 — forked from matthewpizza/install-composer.sh
Install Composer on Webfaction
cd $HOME
ln -s `which php56` ~/bin/php
export PATH=$HOME/bin:$PATH
curl -sS https://getcomposer.org/installer | php56
echo -e "\n# Composer\nalias composer=\"php56 \$HOME/composer.phar\"" >> $HOME/.bash_profile
source $HOME/.bash_profile