composer.json 680 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "drupal/migrate_tools",
  3. "description": "Tools to assist in developing and running migrations.",
  4. "type": "drupal-module",
  5. "homepage": "http://drupal.org/project/migrate_tools",
  6. "support": {
  7. "issues": "http://drupal.org/project/migrate_tools",
  8. "irc": "irc://irc.freenode.org/drupal-migrate",
  9. "source": "http://cgit.drupalcode.org/migrate_tools"
  10. },
  11. "license": "GPL-2.0+",
  12. "require": {
  13. "drupal/migrate_plus": "^4"
  14. },
  15. "require-dev": {
  16. "drupal/coder": "^8",
  17. "drupal/migrate_source_csv": "^2.2"
  18. },
  19. "minimum-stability": "dev",
  20. "extra": {
  21. "drush": {
  22. "services": {
  23. "drush.services.yml": "^9"
  24. }
  25. }
  26. }
  27. }