-1

I have a problem when installing CKeditor on Symfony 4.3, it puts me in the console when I enter the command to install the ckeditor bundle:

composer require friendsofsymfony / ckeditor-bundle

And an error appears and the console answers me:

Problem 1      - Installation request for friendsofsymfony / ckeditor-bundle ^ 2.2 -> satisfiable by friendsofsymfony / ckeditor-bundle [2.2.0].      - friendsofsymfony / ckeditor-bundle 2.2.0 requires ext-zip * -> the requested PHP extension zip is missing from your system.

Installation failed, deleting ./composer.json. Air-de-Clement: $ composer require friendsofsymfony / ckeditor-bundle ^ 5

1 Answers1

0

Composer said to you that the requested PHP extension zip is missing from your system. You need to install it.

You could run sudo apt-get install php7.VERSION-zip

Like said here for linux

Or here for macOS

GrenierJ
  • 1,145
  • 8
  • 18