composer.json 1020 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "getgrav/grav-plugin-taxonomylist",
  3. "type": "grav-plugin",
  4. "description": "TaxonomyList plugin for Grav CMS",
  5. "keywords": ["taxonomy", "tags", "plugin"],
  6. "homepage": "https://github.com/getgrav/grav-plugin-taxonomylist",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Team Grav",
  11. "email": "devs@getgrav.org",
  12. "homepage": "https://getgrav.org",
  13. "role": "Developer"
  14. }
  15. ],
  16. "support": {
  17. "issues": "https://github.com/getgrav/grav-plugin-taxonomylist/issues",
  18. "irc": "https://chat.getgrav.org",
  19. "forum": "https://discourse.getgrav.org",
  20. "docs": "https://github.com/getgrav/grav-plugin-taxonomylist/blob/master/README.md"
  21. },
  22. "require": {
  23. "php": ">=7.1.3"
  24. },
  25. "autoload": {
  26. "classmap": [
  27. "classes/taxonomylist.php",
  28. "taxonomylist.php"
  29. ]
  30. },
  31. "config": {
  32. "platform": {
  33. "php": "7.1.3"
  34. }
  35. }
  36. }