composer.json 961 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "matt-j-m/grav-plugin-aura",
  3. "type": "grav-plugin",
  4. "description": "Automatically add meta tags and structured data to your pages for visually appealing and informative search results and social media sharing.",
  5. "keywords": ["seo", "structured data", "open graph"],
  6. "homepage": "https://github.com/matt-j-m/grav-plugin-aura",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Matt Mulhall",
  11. "email": "matt@theskylab.net",
  12. "homepage": "https://www.theskylab.net",
  13. "role": "Developer"
  14. }
  15. ],
  16. "support": {
  17. "issues": "https://github.com/matt-j-m/grav-plugin-aura/issues",
  18. "docs": "https://github.com/matt-j-m/grav-plugin-aura/blob/master/README.md"
  19. },
  20. "require": {
  21. "php": ">=7.1.3",
  22. "ext-json": "*"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Grav\\Plugin\\Aura\\": "classes/"
  27. },
  28. "classmap": [
  29. "aura.php"
  30. ]
  31. },
  32. "config": {
  33. "platform": {
  34. "php": "7.1.3"
  35. }
  36. }
  37. }