Ubuntu - Install PHP and Composer
[1] Update Ubuntu
sudo apt update
[2] Install PHP CLI
sudo apt install php-cli unzip
[3] Install Composer
Change directory to home.
Install Composer
cd ~
curl -sS https://getcomposer.org/installer -o /tmp/composer-setup.php
Using curl, fetch the l...