composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "opentalent/ot_core",
  3. "type": "typo3-cms-extension",
  4. "version": "1.0",
  5. "description": "Core extension par Opentalent",
  6. "authors": [
  7. {
  8. "name": "Olivier Massot",
  9. "role": "Developer"
  10. }
  11. ],
  12. "require": {
  13. "typo3/cms-core": "^12.4",
  14. "fluidtypo3/flux": "^10.0",
  15. "fluidtypo3/vhs": "^7.0",
  16. "georgringer/news": "^11.4",
  17. "causal/image_autoresize": "^2.4",
  18. "guzzlehttp/guzzle": "^7.7",
  19. "twig/twig": "^3.3",
  20. "phpunit/phpunit": "^10.1.3",
  21. "dreistromland/typo3-hcaptcha": "^2.2",
  22. "typo3/testing-framework": "^8.2",
  23. "ext-json": "*",
  24. "co-stack/logs": "*"
  25. },
  26. "replace": {
  27. "opentalent/ot_core": "self.version",
  28. "typo3-ter/ot_core": "self.version"
  29. },
  30. "config": {
  31. "vendor-dir": ".Build/vendor",
  32. "bin-dir": ".Build/bin",
  33. "allow-plugins": {
  34. "typo3/class-alias-loader": true,
  35. "typo3/cms-composer-installers": true
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Opentalent\\OtCore\\": "Classes"
  41. }
  42. },
  43. "autoload-dev": {
  44. "psr-4": {
  45. "Opentalent\\OtCore\\Tests\\": "Tests"
  46. }
  47. },
  48. "scripts": {
  49. "post-autoload-dump": [
  50. "@prepare-extension-test-structure"
  51. ]
  52. },
  53. "extra": {
  54. "typo3/cms": {
  55. "cms-package-dir": "{$vendor-dir}/typo3/cms",
  56. "web-dir": ".Build/Web",
  57. "extension-key": "ot_core"
  58. }
  59. },
  60. "require-dev": {
  61. "phpspec/prophecy-phpunit": "^2.2"
  62. }
  63. }