How to Install PHP Composer on CentOS/RHEL 8/7

Channel: Linux
Abstract: chmod +x /usr/local/bin/composerwhich can be used for all PHP applications on that system. mv composer.phar /usr/local/bin/composer

Composer is a dependency management tool for PHP similar to npm for nodejs and bundle for ruby. Using the composer tool we can define required libraries for our project and install it with the composer in a single command. We don’t need to search for each library individually to install each time.

This tutorial will help you to install PHP Composer on CentOS, RHEL & Fedora operating systems. We are assuming that you already have installed PHP on your system.

Prerequsitis
  • Sudo privileged account with shell access.
  • You must have PHP installed on your system.
Install Composer on CentOS

To install php composer on Redhat based systems. We just need to download composer executable and put under bin directory.

curl -sS https://getcomposer.org/installer | php

Now use the following commands to make composer available globally for all users in your system, which can be used for all PHP applications on that system.

mv composer.phar /usr/local/bin/composer
chmod +x /usr/local/bin/composer

To find the version of composer simply use the following command.

composer -V

Composer version 1.10.5 2020-04-10 11:44:22
Update Composer

If there is any upgrade available, Composer displays the information with every run. Composer is build with the ability to upgrade itself. You just need to run following command to update composer.phar to the latest version.

composer self-update

Ref From: tecadmin
Channels: PHPcomposer

Related articles