Answers for "install composer npm"

2

Install Composer

curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
Posted by: Guest on October-17-2020
2

Install composer

//Update your packages:
sudo apt-get update

//Install Curl to get the composer library:
sudo apt-get install curl

//Installing composer:
sudo curl -s https://getcomposer.org/installer | php

//Move the composer file to bin path :
sudo mv composer.phar /usr/local/bin/composer

//Verify composer installation :
composer
Posted by: Guest on September-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language