composer.json 725 B

12345678910111213141516171819202122232425262728
  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-or-later",
  12. "require": {
  13. "drupal/migrate_plus": "^4"
  14. },
  15. "require-dev": {
  16. "drupal/migrate_plus": "4.x-dev",
  17. "drupal/migrate_source_csv": "^2.2",
  18. "drush/drush": "^9"
  19. },
  20. "minimum-stability": "dev",
  21. "extra": {
  22. "drush": {
  23. "services": {
  24. "drush.services.yml": "^9"
  25. }
  26. }
  27. }
  28. }