Magento Tutorials

How To Install and Use Composer on Ubuntu 20.04

Hello friends,

Here we are with another tutorial on the installation and use of Composer on Ubuntu 20.04. So, let’s get going! Before getting into the installing part, let us first briefly brush you all up about what exactly is a composer and its main use.

Introduction:

Composer is a prevalent dependency manager in PHP. Composer enables you to specify the PHP libraries that your project is dependent on, and it pulls and manages all the libraries and dependencies by using the appropriate versions according to the requirements of your project. Composer can be used in all the latest PHP frameworks as for example Laravel, Symfony, Drupal, and Magento.

Steps to install Composer on Ubuntu 20.04

Step 1 — Installing PHP and Additional Dependencies

First, update the package manager cache

sudo apt-get update

Next, run the following command to install the required packages:

sudo apt-get install php-cli unzip zip

You will be prompted to confirm installation by typing Y and then ENTER.

Step 2 — Downloading and Installing Composer

cd ~

curl -sS https://getcomposer.org/installer -o composer-setup.php

To install composer globally, use the following command which will download and install Composer as a system-wide command named  composer, under /usr/local/bin:

sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer

To check your installation, run:

composer

Step 3 — Using Composer in a PHP(Magento 2) Project

When a required package relies on a system library that is currently not installed on your server, you will get an error telling which requirement is missing:

composer require Vendor/Extension

Step 4 — Updating Project Dependencies

Whenever you want to update your project dependencies to more recent versions, run the update command:

composer update

You can also update one or more specific libraries by specifying them like this:

composer update Vendor1/Extension1 Vendor2/Extension2

Closure:

So, here we have demonstrated How To Install and Use a Composer on Ubuntu 20.04. Make sure to perform all the steps carefully for a smooth installation. You can also upgrade your Magento version with zero downtime and data loss by using our Magento Upgrade Service.

We will be glad to receive from you if there are any queries or doubts you have. Share this blog with your friends.

Happy Coding!

Click to rate this post!
[Total: 15 Average: 4.8]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate ?️ Certified Magento Developer?‍?. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.?

Recent Posts

How to Add Tooltip in Checkout Shipping Field in Magento 2?

Hello Magento Friends, In today’s blog, I will explain How to Add Tooltip in Checkout…

3 days ago

How to Integrate and Use MongoDB with Laravel?

MongoDB is a popular NoSQL database that offers flexibility and scalability when handling modern web…

4 days ago

NodeJS | Callback Function

In NodeJS, callbacks empower developers to execute asynchronous operations like reading files, handling requests, and…

5 days ago

How to Show SKU in Order Summary in Magento 2?

Hello Magento Friends, In today’s blog, we will learn How to Show SKU in Order…

7 days ago

Best Colors to Use for CTA Buttons

The "Buy Now" and "Add to Cart" buttons serve as the primary call-to-action (CTA) elements…

1 week ago

Magento 2: How to Save Custom Field Value to quote_address for Multi-Shipping Orders

Hello Magento Friends, In Magento 2, the checkout process allows customers to choose multiple shipping…

1 week ago