-1

I'm working with macOS, Laravel and Vue. My partner is working on Windows and he update the repository installing DomPDF, when I try to do a composer update or composer install I get this error:

Your requirements could not be resolved to an installable set of packages.

Problem 1

 - phpoffice/phpspreadsheet 1.14.1 requires ext-zip * -> the requested PHP extension zip is missing from your system.
 - phpoffice/phpspreadsheet 1.14.0 requires ext-zip * -> the requested PHP extension zip is missing from your system.
 - Installation request for phpoffice/phpspreadsheet ^1.14 -> satisfiable by phpoffice/phpspreadsheet[1.14.0, 1.14.1].
Joundill
  • 6,828
  • 12
  • 36
  • 50
RodrigoE
  • 3
  • 1

1 Answers1

0

It depends on your setup.

Long story short, you need to install ext-zip, which is a PHP extension.

The answers to this question will solve your issue.

Try:

brew update
brew install php@7.3
brew link php@7.3
Joundill
  • 6,828
  • 12
  • 36
  • 50