composer.json 699 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "getgrav/grav-plugin-flex-objects",
  3. "type": "grav-plugin",
  4. "description": "Flex Objects plugin for Grav CMS",
  5. "keywords": ["flex-objects"],
  6. "homepage": "https://github.com/trilbymedia/grav-plugin-flex-objects",
  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. "require": {
  17. "php": "^7.3.6 || ^8.0",
  18. "ext-json": "*",
  19. "ext-mbstring": "*"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "Grav\\Plugin\\FlexObjects\\": "classes/"
  24. },
  25. "classmap": ["flex-objects.php"]
  26. },
  27. "config": {
  28. "platform": {
  29. "php": "7.3.6"
  30. }
  31. }
  32. }