Skip to content

Instantly share code, notes, and snippets.

View papi18011998's full-sized avatar

papi ndiaye papi18011998

View GitHub Profile
@papi18011998
papi18011998 / composer-install.sh
Created February 13, 2022 21:05 — 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