composer.json 868 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "drupal/simple_sitemap",
  3. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4. "type": "drupal-module",
  5. "homepage": "https://drupal.org/project/simple_sitemap",
  6. "authors": [
  7. {
  8. "name": "Pawel Ginalski (gbyte.co)",
  9. "email": "contact@gbyte.co",
  10. "homepage": "https://www.drupal.org/u/gbyte.co",
  11. "role": "Maintainer"
  12. }
  13. ],
  14. "support": {
  15. "issues": "https://drupal.org/project/issues/simple_sitemap",
  16. "irc": "irc://irc.freenode.org/drupal-contribute",
  17. "source": "https://cgit.drupalcode.org/simple_sitemap"
  18. },
  19. "license": "GPL-2.0+",
  20. "minimum-stability": "dev",
  21. "require": {
  22. "ext-xmlwriter": "*"
  23. },
  24. "extra": {
  25. "drush": {
  26. "services": {
  27. "drush.services.yml": "^9"
  28. }
  29. }
  30. }
  31. }