Istiyak Amin
Istiyak Amin

Reputation: 281

Laravel Not install composer error

enter image description here

Actually, I don't understand what's the problem going on

enter image description here

Upvotes: 0

Views: 126

Answers (2)

user3562771
user3562771

Reputation:

You can install the zip extension for php 7 on ubuntu by using the ssh command line:

sudo add-apt-repository ppa:ondrej/php
sudo apt-get update

try

sudo apt-get install php-zip

And then you need to restart apache to include this extension:

sudo service apache2 restart

Upvotes: 1

Prince Lionel N'zi
Prince Lionel N'zi

Reputation: 2588

As mentioned, it requires the zip extension.

You can install it by running:

sudo apt-get install php7.2-zip

Upvotes: 0

Related Questions