composer.json 815 B

123456789101112131415161718192021222324252627282930313233
  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": "^8.7.1 || ^10.4",
  13. "fluidtypo3/vhs": "^6",
  14. "fluidtypo3/flux": "^9",
  15. "fluidtypo3/fluidpages": "^5",
  16. "guzzlehttp/guzzle": "^6",
  17. "ext-json": "^1.6"
  18. },
  19. "replace": {
  20. "ot_templating": "self.version",
  21. "typo3-ter/ot_templating": "self.version"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Opentalent\\OtTemplating\\": "Classes"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "Opentalent\\OtTemplating\\Tests\\": "Tests"
  31. }
  32. }
  33. }