Problem scenario
You want to install Composer (a dependency manager for PHP) on your Debian/Ubuntu Linux server. What do you do?
Solution
- Run these commands:
sudo apt -y update
sudo apt -y install php-cli unzip
cd ~
sudo curl -sS https://getcomposer.org/installer -o composer-setup.php
HASH=curl -sS https://composer.github.io/installer.sig
echo $HASH
php -r “if (hash_file(‘SHA384’,
…
Continue reading “How Do You Install Composer on Debian/Ubuntu Linux?”