composer.json 844 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "amzn/amazon-pay-and-login-with-amazon-core-module",
  3. "description": "Shared functionality for Amazon Pay and Login with Amazon modules",
  4. "type": "magento2-module",
  5. "version": "3.1.4",
  6. "license": [
  7. "Apache-2.0"
  8. ],
  9. "require": {
  10. "php": "~7.1.3||~7.2.0",
  11. "magento/framework": "*",
  12. "magento/module-sales": "*",
  13. "magento/module-config": "*",
  14. "magento/module-store": "*",
  15. "magento/module-developer": "*",
  16. "magento/module-quote": "*",
  17. "magento/module-catalog": "*",
  18. "magento/module-customer": "*",
  19. "magento/module-checkout": "*",
  20. "magento/module-backend": "*",
  21. "magento/module-payment": "*",
  22. "magento/module-paypal": "*",
  23. "amzn/amazon-pay-sdk-php": "^3.2.0"
  24. },
  25. "autoload": {
  26. "files": ["registration.php"],
  27. "psr-4": {
  28. "Amazon\\Core\\": ""
  29. }
  30. }
  31. }