Linux serverNETWORK ADMINISTRATIONS

How To Install PHP Composer on CentOS 7 RHEL and Fedora

Composer is a dependency management tool for PHP similar to npm for nodejs and bundle for ruby. Using composer tool we can define required libraries for our project and install with composer in single command. We don’t need to search for each library individually to install each time.
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
chmod +x /usr/local/bin/composer
composer -V

source

centos 7

Leave a Reply

Your email address will not be published. Required fields are marked *