Drupal investigation

composer.json 789B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "drupal/migrate_source_csv",
  3. "description": "CSV source migration.",
  4. "type": "drupal-module",
  5. "license": "GPL-2.0+",
  6. "homepage": "https://www.drupal.org/project/migrate_source_csv",
  7. "authors": [
  8. {
  9. "name": "Lucas Hedding",
  10. "homepage":"https://www.drupal.org/u/heddn",
  11. "role": "Maintainer"
  12. }
  13. ],
  14. "support": {
  15. "issues": "https://www.drupal.org/project/issues/migrate_source_csv",
  16. "irc": "irc://irc.freenode.org/drupal-migrate",
  17. "source": "https://cgit.drupalcode.org/migrate_source_csv"
  18. },
  19. "minimum-stability": "dev",
  20. "prefer-stable": true,
  21. "require": {
  22. "drupal/core": "~8.1"
  23. },
  24. "require-dev": {
  25. "mikey179/vfsStream": "~1",
  26. "phpunit/phpunit": "~4"
  27. },
  28. "config": {
  29. "preferred-install": "dist"
  30. }
  31. }