When I run a composer update I get this error message:
composer update
Loading composer repositories with package information Updating dependencies (including r
On docker with image php:7.2-apache I just needed zip and unzip. No need for php-zip :
php:7.2-apache
apt-get install zip unzip
or Dockerfile
RUN ["apt-get", "update"] RUN ["apt-get", "install", "-y", "zip"] RUN ["apt-get", "install", "-y", "unzip"]