-
-
Save alpha1125/b84c75f860a82c87cd857b9b0fdb73f0 to your computer and use it in GitHub Desktop.
--(1754:Sun,11 Nov 18:$ )-- composer update | |
Loading composer repositories with package information | |
Updating dependencies (including require-dev) | |
Your requirements could not be resolved to an installable set of packages. | |
Problem 1 | |
- The requested PHP extension ext-http * is missing from your system. Install or enable PHP's http extension. | |
I have also same error. But I have already added ext-http: "*" in the require scope of my composer.json
sudo apt install php-http
I solved it with this:
sudo apt install php-pecl-http
I have this problem on a Cpanel server, in my local machine(ubuntu) I just install sudo apt install php-http
ando solve it, but how to solve this on a cpanel instalation server?
Sorry for the late response.
I have this problem on a Cpanel server, in my local machine(ubuntu) I just install
sudo apt install php-http
ando solve it, but how to solve this on a cpanel instalation server?
You should not need that on production (cpanel) servers. The requirement is for development environment. php-http is just a private server, mean for development, and is not production ready.
Hi,
Did you manage to fix this? I have the same error.