composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "getgrav/grav-plugin-admin",
  3. "type": "grav-plugin",
  4. "description": "Admin plugin for Grav CMS",
  5. "keywords": ["admin", "plugin", "manager", "panel"],
  6. "homepage": "https://github.com/getgrav/grav-plugin-admin",
  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-admin/issues",
  18. "irc": "https://chat.getgrav.org",
  19. "forum": "https://discourse.getgrav.org",
  20. "docs": "https://github.com/getgrav/grav-plugin-admin/blob/master/README.md"
  21. },
  22. "require": {
  23. "php": ">=7.1.3",
  24. "ext-json": "*",
  25. "composer/semver": "^1.4",
  26. "p3k/picofeed": "@stable"
  27. },
  28. "require-dev": {
  29. "codeception/codeception": "^2.4",
  30. "fzaninotto/faker": "^1.8",
  31. "symfony/yaml": "~4.1",
  32. "symfony/console": "~4.1",
  33. "symfony/finder": "~4.1",
  34. "symfony/event-dispatcher": "~4.1"
  35. },
  36. "autoload": {
  37. "classmap": [
  38. "classes/",
  39. "admin.php"
  40. ]
  41. },
  42. "config": {
  43. "platform": {
  44. "php": "7.1.3"
  45. }
  46. },
  47. "scripts": {
  48. "test": "vendor/bin/codecept run unit",
  49. "test-windows": "vendor\\bin\\codecept run unit"
  50. }
  51. }