composer.json 739 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "grav-plugin-form",
  3. "type": "grav-plugin",
  4. "description": "Grav Plugin Form",
  5. "keywords": ["form"],
  6. "homepage": "https://github.com/getgrav/grav-plugin-form",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Team Grav",
  11. "email": "devs@getgrav.org",
  12. "homepage": "http://getgrav.org",
  13. "role": "Developer"
  14. }
  15. ],
  16. "support": {
  17. "issues": "https://github.com/getgrav/grav-plugin-form/issues",
  18. "irc": "https://gitter.im/getgrav/grav",
  19. "forum": "http://getgrav.org/forum",
  20. "docs": "https://github.com/getgrav/grav-plugin-form/blob/master/README.md"
  21. },
  22. "require": {
  23. "php": ">=5.4.0"
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "Grav\\Plugin\\Form\\": "classes/"
  28. }
  29. }
  30. }