What is composer?

Categories
Uncategorized

What is composer?

Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Composer deals with packages or libraries and manages them per-project basis by installi it in directory (e.g Vendor).

You can install it locally or globally depending upon the requirements. By default it doesn’t install anything globally.

Composer is strongly inspired by node’s npm and ruby’s bundler.

Composer

  1. Enables you to declare the libraries you depend on.
  2. Finds out which versions of which packages can and need to be installed, and installs them (meaning it downloads them into your project).

System Requirement

Composer requires PHP 5.3.2+ to run. A few sensitive php settings and compile flags are also required, but when using the installer you will be warned about any incompatibilities.

To install packages from sources instead of simple zip archives, you will need git, svn, fossil or hg depending on how the package is version-controlled.

Composer is multi-platform and run equally well on Windows, Linux and OSX.

Installation Procedure

Installing composer on Linux/MacOs

Most PHP developers use either their Macs or Linux-based operating systems for development, making this section relevant to the majority of readers. The process is very similar on both OS. You have to run the same commands on your system’s terminal in order to get Composer.

There are two options for Linux/Mac users when installing Composer:

Local Installation

Not the most common option, but you can choose to install Composer locally. This means that your operating system will not be able to run Composer from anywhere; you will have to specify the path from where it is installed. To do this, follow these steps:

  • Run the following commands
php -r “copy(‘https://getcomposer.org/installer’, ‘composer-setup.php’);”
php -r “if (hash_file(‘SHA384’, ‘composer-setup.php’) === ‘669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be66
0b410’)
{ echo ‘Installer verified’; }
else { echo ‘Installer corrupt’; unlink(‘composer-setup.php’); } echo PHP_EOL;”

The first command will grab the Composer installer as a PHAR (PHP Archive) file, while the second ensures that the installer is free from any errors or corruption.After executing these commands, you will have the latest build of Composer’s installer on your drive.

  • Install composer via command

php composer-setup.php –install-dir=bin –filename=composer

You can change the installation directory and filename through the –install-dir and –filename parameters. Here you can see that the directory has been named bin, and the executable is installed by the name composer.

Now that you’ve installed Composer, you can run it by typing the following command:

php bin/composer

Global Installation

After the local installation, we recommend making Composer accessible globally. This will ensure that Composer can be executed from anywhere on your system, regardless of the path. We do this by adding Composer to your PATH variable.

To do this, you have to:

  • Follow the instructions given in Local Installation.
  • Run the following command afterwards.

sudo mv composer.phar /usr/local/bin/composer

  • Now you can boot Composer independent of your current path in the terminal.
  • To run composer, execute the command.

composer

RELATED POSTS

Let's talk about your business

Leave a message here and we shall connect with you to discuss your digital needs.

Fill out the form & we'll be in touch soon!

View All

Blogs

Subscribe to our Newsletter

Join our email list and get access to latest updates, case studies & research reports

Location

Locations

Mumbai, Bengaluru, Ahmedabad, Indore, Canada

Location

Locations

Mumbai, Bengaluru, Ahmedabad, Indore, Canada

connect

Connect

    • Instagram
    • In
    • Twitter
    • Youtube
connect

Connect

    • Instagram
    • In
    • Twitter
    • Youtube