composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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.3.6 || ^8.0",
  24. "ext-json": "*",
  25. "scssphp/scssphp": "^1.11",
  26. "laminas/laminas-zendframework-bridge": "^1.4",
  27. "p3k/picofeed": "@stable"
  28. },
  29. "require-dev": {
  30. "codeception/codeception": "^2.4",
  31. "fzaninotto/faker": "^1.8",
  32. "symfony/yaml": "~4.4",
  33. "symfony/console": "~4.4",
  34. "symfony/finder": "~4.4",
  35. "symfony/event-dispatcher": "~4.4"
  36. },
  37. "replace": {
  38. "symfony/polyfill-php72": "*",
  39. "symfony/polyfill-php73": "*"
  40. },
  41. "autoload": {
  42. "psr-4": {
  43. "Grav\\Plugin\\Admin\\": "classes/plugin"
  44. },
  45. "classmap": [
  46. "admin.php"
  47. ]
  48. },
  49. "config": {
  50. "platform": {
  51. "php": "7.3.6"
  52. }
  53. },
  54. "scripts": {
  55. "test": "vendor/bin/codecept run unit",
  56. "test-windows": "vendor\\bin\\codecept run unit"
  57. },
  58. "repositories": [
  59. {
  60. "type": "vcs",
  61. "url": "https://github.com/rhukster/picoFeed"
  62. }
  63. ]
  64. }