To install Composer onto a Linux server run the following commands to, in order.
- Download the installer to the current directory
- Verify the installer
- Run the installer
- Remove the installer
1)php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
2)php -r "if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
3)php composer-setup.php
4)php -r "unlink('composer-setup.php');"