composer.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "dotmailer/dotmailer-magento2-extension",
  3. "description": "dotmailer integration for magento 2",
  4. "type": "magento2-module",
  5. "version": "3.1.1",
  6. "license": "MIT",
  7. "repositories": [
  8. {
  9. "type": "composer",
  10. "url": "https://repo.magento.com/"
  11. },
  12. {
  13. "type": "vcs",
  14. "url": "https://github.com/magento/marketplace-eqp"
  15. }
  16. ],
  17. "require": {
  18. "magento/framework": ">=100 <103",
  19. "magento/module-newsletter": "100.*",
  20. "magento/module-review": ">=100 <102",
  21. "magento/module-sales": ">=100 <103",
  22. "magento/module-sales-rule": ">=100 <102",
  23. "magento/module-wishlist": ">=100 <102",
  24. "magento/module-store": ">=100 <102",
  25. "magento/module-config": ">=100 <103",
  26. "magento/module-backend": ">=100 <102",
  27. "magento/module-checkout": "100.*",
  28. "magento/module-ui": ">=100 <102",
  29. "magento/module-cron": "100.*",
  30. "magento/module-customer": ">=100 <103",
  31. "magento/module-eav": ">=100 <103",
  32. "magento/module-catalog": ">=101 <104",
  33. "magento/module-catalog-rule": ">=100 <102",
  34. "magento/module-catalog-inventory": "100.*",
  35. "magento/module-quote": ">=100 <102",
  36. "magento/module-directory": "100.*",
  37. "magento/module-shipping": "100.*",
  38. "magento/module-payment": "100.*",
  39. "magento/module-user": ">=100 <102",
  40. "magento/module-reports": "100.*",
  41. "magento/module-email": ">=100 <102",
  42. "magento/module-send-friend": "100.*",
  43. "magento/module-product-alert": "100.*"
  44. },
  45. "require-dev": {
  46. "phpmd/phpmd": "@stable",
  47. "magento/marketplace-eqp": "dev-master",
  48. "squizlabs/php_codesniffer": "@stable"
  49. },
  50. "authors": [
  51. {
  52. "name": "Calin Diacon",
  53. "email": "calin.diacon@dotmailer.com"
  54. },
  55. {
  56. "name": "Adeel Qamar",
  57. "email": "adeel.qamar@dotmailer.com"
  58. },
  59. {
  60. "name": "Zygimantas",
  61. "email": "zygimantas.simkus@dotmailer.com"
  62. }
  63. ],
  64. "autoload": {
  65. "files": [ "registration.php" ],
  66. "psr-4": {
  67. "Dotdigitalgroup\\Email\\": ""
  68. }
  69. }
  70. }