composer.json 430 B

123456789101112131415161718192021
  1. {
  2. "name": "magento/module-test-module-integration-from-config",
  3. "description": "test integration create from config",
  4. "config": {
  5. "sort-packages": true
  6. },
  7. "require": {
  8. "php": "~7.1.3||~7.2.0",
  9. "magento/framework": "*",
  10. "magento/module-integration": "*"
  11. },
  12. "type": "magento2-module",
  13. "extra": {
  14. "map": [
  15. [
  16. "*",
  17. "Magento/TestModuleIntegrationFromConfig"
  18. ]
  19. ]
  20. }
  21. }