ItSolutionStuff.com

Composer Install Error Require ext-curl missing - Solved

By Hardik Savani • May 1, 2024
PHP

A few days ago, I was working on my laravel 9 application. I just set up a project on the server. then I was trying to composer installed and I found the following error.

"require ext-curl - it is missing in the system ..." in the terminal.

I google it and find we need to install php-curlextensions for composer install error require ext-curl missing. so let's see the below solution.

Solution:

You need to run both command one by one:

sudo apt-get install php-curl

Solution for PHP 8.2

You need to run both command one by one:

sudo apt-get install php8.2-curl

Solution for PHP 8.1

You need to run both command one by one:

sudo apt-get install php8.1-curl

Solution for PHP 8.0

You need to run both command one by one:

sudo apt-get install php8.0-curl

Solution for PHP 7.4

You need to run both command one by one:

sudo apt-get install php7.4-curl

Solution for PHP 7.3

You need to run both command one by one:

sudo apt-get install php7.3-curl

Solution for PHP 7.2

You need to run both command one by one:

sudo apt-get install php7.2-curl

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel Get Min Value of Column Example

Read Now →

Laravel Get Max Value of Column Example

Read Now →

Laravel E-Signature using Docusign API Tutorial

Read Now →

Laravel JQuery Ajax Loading Spinner Example

Read Now →

Composer Install with Ignore Cache Example

Read Now →

How to Install Composer in Ubuntu Server?

Read Now →

How to Remove Composer Package in Laravel?

Read Now →

Laravel Http Curl Post Request with Headers Example

Read Now →

PHP Curl Request with Username and Password Example

Read Now →

PHP Curl POST Request with Headers Example

Read Now →

PHP Curl Get Request with Parameters Example

Read Now →

How to Install Composer using Command Line in Ubuntu?

Read Now →

How to Add Pagination with Union in Laravel?

Read Now →