ext-imagick * -> the requested PHP extension imagick is missing from your system ext-imagick * -> the requested PHP extension imagick is missing from your system php php

ext-imagick * -> the requested PHP extension imagick is missing from your system


if you really can't install or don't want that extension to be validated you may skip it by supplying the

--ignore-platform-reqs

flag to your composer command


Please follow these steps

  • sudo apt-get install php-imagick
  • php -m | grep imagick // this should print 'imagick' it means installed correctly
  • sudo service apache2 restart //(if needed)


Try adding:

"ext-imagick": "*",

to your require block in your composer.json like so:

"license": "MIT","require": {    "ext-imagick": "*",    ....}

and run composer update