composer.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "symfony/twig-bridge",
  3. "type": "symfony-bridge",
  4. "description": "Provides integration for Twig with various Symfony components",
  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. "symfony/polyfill-php80": "^1.15",
  21. "symfony/translation-contracts": "^1.1|^2",
  22. "twig/twig": "^2.13|^3.0.4"
  23. },
  24. "require-dev": {
  25. "egulias/email-validator": "^2.1.10|^3",
  26. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  27. "symfony/asset": "^4.4|^5.0",
  28. "symfony/dependency-injection": "^4.4|^5.0",
  29. "symfony/finder": "^4.4|^5.0",
  30. "symfony/form": "^5.1.9",
  31. "symfony/http-foundation": "^4.4|^5.0",
  32. "symfony/http-kernel": "^4.4|^5.0",
  33. "symfony/intl": "^4.4|^5.0",
  34. "symfony/mime": "^5.2",
  35. "symfony/polyfill-intl-icu": "~1.0",
  36. "symfony/property-info": "^4.4|^5.1",
  37. "symfony/routing": "^4.4|^5.0",
  38. "symfony/translation": "^5.2",
  39. "symfony/yaml": "^4.4|^5.0",
  40. "symfony/security-acl": "^2.8|^3.0",
  41. "symfony/security-core": "^4.4|^5.0",
  42. "symfony/security-csrf": "^4.4|^5.0",
  43. "symfony/security-http": "^4.4|^5.0",
  44. "symfony/serializer": "^5.2",
  45. "symfony/stopwatch": "^4.4|^5.0",
  46. "symfony/console": "^4.4|^5.0",
  47. "symfony/expression-language": "^4.4|^5.0",
  48. "symfony/web-link": "^4.4|^5.0",
  49. "symfony/workflow": "^5.2",
  50. "twig/cssinliner-extra": "^2.12|^3",
  51. "twig/inky-extra": "^2.12|^3",
  52. "twig/markdown-extra": "^2.12|^3"
  53. },
  54. "conflict": {
  55. "phpdocumentor/reflection-docblock": "<3.2.2",
  56. "phpdocumentor/type-resolver": "<1.4.0",
  57. "symfony/console": "<4.4",
  58. "symfony/form": "<5.1",
  59. "symfony/http-foundation": "<4.4",
  60. "symfony/http-kernel": "<4.4",
  61. "symfony/translation": "<5.2",
  62. "symfony/workflow": "<5.2"
  63. },
  64. "suggest": {
  65. "symfony/finder": "",
  66. "symfony/asset": "For using the AssetExtension",
  67. "symfony/form": "For using the FormExtension",
  68. "symfony/http-kernel": "For using the HttpKernelExtension",
  69. "symfony/routing": "For using the RoutingExtension",
  70. "symfony/translation": "For using the TranslationExtension",
  71. "symfony/yaml": "For using the YamlExtension",
  72. "symfony/security-core": "For using the SecurityExtension",
  73. "symfony/security-csrf": "For using the CsrfExtension",
  74. "symfony/security-http": "For using the LogoutUrlExtension",
  75. "symfony/stopwatch": "For using the StopwatchExtension",
  76. "symfony/var-dumper": "For using the DumpExtension",
  77. "symfony/expression-language": "For using the ExpressionExtension",
  78. "symfony/web-link": "For using the WebLinkExtension"
  79. },
  80. "autoload": {
  81. "psr-4": { "Symfony\\Bridge\\Twig\\": "" },
  82. "exclude-from-classmap": [
  83. "/Tests/"
  84. ]
  85. },
  86. "minimum-stability": "dev"
  87. }