composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "getgrav/grav-plugin-error",
  3. "type": "grav-plugin",
  4. "description": "Error plugin for Grav CMS",
  5. "keywords": ["error", "plugin"],
  6. "homepage": "https://github.com/getgrav/grav-plugin-error",
  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-error/issues",
  18. "irc": "https://chat.getgrav.org",
  19. "forum": "https://getgrav.org/forum",
  20. "docs": "https://github.com/getgrav/grav-plugin-error/blob/master/README.md"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Grav\\Plugin\\Console\\": "cli/"
  25. },
  26. "classmap": [
  27. "error.php"
  28. ]
  29. },
  30. "config": {
  31. "platform": {
  32. "php": "7.1.3"
  33. }
  34. },
  35. "scripts": {
  36. "test": "vendor/bin/codecept run unit",
  37. "test-windows": "vendor\\bin\\codecept run unit"
  38. }
  39. }