Skip to content

Instantly share code, notes, and snippets.

View hcf0x9d's full-sized avatar
Always coffee

Jason Fukura, CUA™ hcf0x9d

Always coffee
View GitHub Profile
@hcf0x9d
hcf0x9d / install-composer.sh
Last active October 31, 2019 21:22 — forked from matthewpizza/install-composer.sh
Install Composer on Webfaction
cd $HOME
ln -s `which php73` ~/bin/php
export PATH=$HOME/bin:$PATH
curl -sS https://getcomposer.org/installer | php73
echo -e "\n# Composer\nalias composer=\"php73 \$HOME/composer.phar\"" >> $HOME/.bash_profile
source $HOME/.bash_profile