Magento 2.1 – Upgrade Problem from 2.1.4 to 2.1.6

magento-2.1upgrade

I'm trying to update Magento from 2.1.4 to 2.1.6 using composer.
But I'm getting this error:

  Problem 1
    - Installation request for magento/product-community-edition 2.1.6 -> satisfiable by magento/product-community-edition[2.1.6].
    - magento/product-community-edition 2.1.6 requires colinmollenhour/php-redis-session-abstract 1.2 -> no matching package found.

How can I fix this?

Best Answer

Install missing package first as follows.

composer require colinmollenhour/php-redis-session-abstract 1.2 --no-update
composer update

Then try to update again using composer.

Related Topic