,

Installing PHP Composer on CentOS 8 [Quick Way]

 Perform the following steps to quickly install Composer on your CentOS 8 system:


  1. Install PHP CLI and Zip:

    $ sudo dnf install php-cli php-json php-zip curl unzipCopy
  2. Download Composer with curl:

    $ curl -sS https://getcomposer.org/installer |php
  3. Move the Composer file to /usr/local/bin directory:

    $ sudo mv composer.phar /usr/local/bin/composer
Continue reading Installing PHP Composer on CentOS 8 [Quick Way]