composer.json 832 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "opentalent/ot_templating",
  3. "type": "typo3-cms-extension",
  4. "description": "Gabarits Typo3 par Opentalent",
  5. "authors": [
  6. {
  7. "name": "Olivier Massot",
  8. "role": "Developer"
  9. }
  10. ],
  11. "require": {
  12. "typo3/cms-core": "^11.5",
  13. "fluidtypo3/vhs": "^6",
  14. "fluidtypo3/flux": "^9",
  15. "co-stack/logs": "*",
  16. "guzzlehttp/guzzle": "^7",
  17. "ext-json": "^1.6",
  18. "sgalinski/lfeditor": "^7"
  19. },
  20. "replace": {
  21. "ot_templating": "self.version",
  22. "typo3-ter/ot_templating": "self.version"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Opentalent\\OtTemplating\\": "Classes"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "Opentalent\\OtTemplating\\Tests\\": "Tests"
  32. }
  33. }
  34. }