composer.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "name": "symfony/framework-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "ext-xml": "*",
  21. "symfony/cache": "^5.2",
  22. "symfony/config": "^5.0",
  23. "symfony/dependency-injection": "^5.2",
  24. "symfony/deprecation-contracts": "^2.1",
  25. "symfony/event-dispatcher": "^5.1",
  26. "symfony/error-handler": "^4.4.1|^5.0.1",
  27. "symfony/http-foundation": "^5.2.1",
  28. "symfony/http-kernel": "^5.2.1",
  29. "symfony/polyfill-mbstring": "~1.0",
  30. "symfony/polyfill-php80": "^1.15",
  31. "symfony/filesystem": "^4.4|^5.0",
  32. "symfony/finder": "^4.4|^5.0",
  33. "symfony/routing": "^5.2"
  34. },
  35. "require-dev": {
  36. "doctrine/annotations": "^1.10.4",
  37. "doctrine/cache": "~1.0",
  38. "doctrine/persistence": "^1.3|^2.0",
  39. "symfony/asset": "^5.1",
  40. "symfony/browser-kit": "^4.4|^5.0",
  41. "symfony/console": "^5.2",
  42. "symfony/css-selector": "^4.4|^5.0",
  43. "symfony/dom-crawler": "^4.4|^5.0",
  44. "symfony/dotenv": "^5.1",
  45. "symfony/polyfill-intl-icu": "~1.0",
  46. "symfony/form": "^5.2",
  47. "symfony/expression-language": "^4.4|^5.0",
  48. "symfony/http-client": "^4.4|^5.0",
  49. "symfony/lock": "^4.4|^5.0",
  50. "symfony/mailer": "^5.2",
  51. "symfony/messenger": "^5.2",
  52. "symfony/mime": "^4.4|^5.0",
  53. "symfony/process": "^4.4|^5.0",
  54. "symfony/security-bundle": "^5.1",
  55. "symfony/security-core": "^4.4|^5.2",
  56. "symfony/security-csrf": "^4.4|^5.0",
  57. "symfony/security-http": "^4.4|^5.0",
  58. "symfony/serializer": "^5.2",
  59. "symfony/stopwatch": "^4.4|^5.0",
  60. "symfony/string": "^5.0",
  61. "symfony/translation": "^5.0",
  62. "symfony/twig-bundle": "^4.4|^5.0",
  63. "symfony/validator": "^5.2",
  64. "symfony/workflow": "^5.2",
  65. "symfony/yaml": "^4.4|^5.0",
  66. "symfony/property-info": "^4.4|^5.0",
  67. "symfony/web-link": "^4.4|^5.0",
  68. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  69. "paragonie/sodium_compat": "^1.8",
  70. "twig/twig": "^2.10|^3.0"
  71. },
  72. "conflict": {
  73. "doctrine/persistence": "<1.3",
  74. "phpdocumentor/reflection-docblock": "<3.2.2",
  75. "phpdocumentor/type-resolver": "<1.4.0",
  76. "phpunit/phpunit": "<5.4.3",
  77. "symfony/asset": "<5.1",
  78. "symfony/browser-kit": "<4.4",
  79. "symfony/console": "<5.2.5",
  80. "symfony/dotenv": "<5.1",
  81. "symfony/dom-crawler": "<4.4",
  82. "symfony/http-client": "<4.4",
  83. "symfony/form": "<5.2",
  84. "symfony/lock": "<4.4",
  85. "symfony/mailer": "<5.2",
  86. "symfony/messenger": "<4.4",
  87. "symfony/mime": "<4.4",
  88. "symfony/property-info": "<4.4",
  89. "symfony/property-access": "<5.2",
  90. "symfony/serializer": "<5.2",
  91. "symfony/stopwatch": "<4.4",
  92. "symfony/translation": "<5.0",
  93. "symfony/twig-bridge": "<4.4",
  94. "symfony/twig-bundle": "<4.4",
  95. "symfony/validator": "<5.2",
  96. "symfony/web-profiler-bundle": "<4.4",
  97. "symfony/workflow": "<5.2"
  98. },
  99. "suggest": {
  100. "ext-apcu": "For best performance of the system caches",
  101. "symfony/console": "For using the console commands",
  102. "symfony/form": "For using forms",
  103. "symfony/serializer": "For using the serializer service",
  104. "symfony/validator": "For using validation",
  105. "symfony/yaml": "For using the debug:config and lint:yaml commands",
  106. "symfony/property-info": "For using the property_info service",
  107. "symfony/web-link": "For using web links, features such as preloading, prefetching or prerendering"
  108. },
  109. "autoload": {
  110. "psr-4": { "Symfony\\Bundle\\FrameworkBundle\\": "" },
  111. "exclude-from-classmap": [
  112. "/Tests/"
  113. ]
  114. },
  115. "minimum-stability": "dev"
  116. }