composer.json 661 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "magento/module-offline-payments",
  3. "description": "N/A",
  4. "config": {
  5. "sort-packages": true
  6. },
  7. "require": {
  8. "php": "~7.1.3||~7.2.0",
  9. "magento/framework": "102.0.*",
  10. "magento/module-checkout": "100.3.*",
  11. "magento/module-payment": "100.3.*"
  12. },
  13. "suggest": {
  14. "magento/module-config": "101.1.*"
  15. },
  16. "type": "magento2-module",
  17. "license": [
  18. "OSL-3.0",
  19. "AFL-3.0"
  20. ],
  21. "autoload": {
  22. "files": [
  23. "registration.php"
  24. ],
  25. "psr-4": {
  26. "Magento\\OfflinePayments\\": ""
  27. }
  28. },
  29. "version": "100.3.1"
  30. }