0

I am trying to install Magento 2.3.3 with PHP 7.1.but when I try to install the composer, i get the error The requested package amzn/amazon-pay-sdk-php 3.5.0 is satisfiable by amzn/amazon-pay-sdk-php[3.5.0] but these conflict with your requirements or minimum-stability.

ashique
  • 935
  • 2
  • 8
  • 26
  • Could you share your composer.json file in your question? – Oluwafemi Sule May 09 '22 at 12:55
  • { "name": "magento/project-community-edition", "description": "eCommerce Platform for Growth (Community Edition)", "type": "project", "version": "2.3.3", "license": [ "OSL-3.0", "AFL-3.0" ], "require": { "magento/product-community-edition": "2.2.3", "composer/composer": "@alpha", "bsscommerce/reindex-data": "^1.0", – ashique May 09 '22 at 13:28
  • You can edit your question and include it there. That way it's more readable and can be properly formatted. – Oluwafemi Sule May 09 '22 at 13:42

1 Answers1

0

though your amzn/amazon-pay-sdk-php 3.5.0 is satisfiable, you need to update the package to the latest, ie 3.7.o

composer require amzn/amazon-pay-sdk-php 3.7.0

ashique
  • 935
  • 2
  • 8
  • 26