Skip to content

Instantly share code, notes, and snippets.

View tessak22's full-sized avatar
🚀
Cultivating Developer Community @Snapchat

Tessa Kriesel tessak22

🚀
Cultivating Developer Community @Snapchat
View GitHub Profile
@vinaydotblog
vinaydotblog / composer-install.sh
Last active April 17, 2023 11:08
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