composer.json 781 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "clivebeckett/admin-addon-media-metadata",
  3. "type": "grav-plugin",
  4. "description": "Add Metadata (title, alt, caption) to image files in admin plugin",
  5. "keywords": ["plugin"],
  6. "homepage": "https://github.com/clivebeckett/grav-plugin-admin-addon-media-metadata",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Clive Beckett",
  11. "email": "clive@musikinsnetz.de",
  12. "role": "Developer"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=7.1.3"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Grav\\Plugin\\AdminAddonMediaMetadata\\": "classes/"
  21. },
  22. "classmap": ["admin-addon-media-metadata.php"]
  23. },
  24. "config": {
  25. "platform": {
  26. "php": "7.1.3"
  27. }
  28. }
  29. }