composer.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "symfony/twig-bridge",
  3. "type": "symfony-bridge",
  4. "description": "Symfony Twig Bridge",
  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": ">=5.5.9",
  20. "twig/twig": "~1.34|~2.4"
  21. },
  22. "require-dev": {
  23. "fig/link-util": "^1.0",
  24. "symfony/asset": "~2.8|~3.0",
  25. "symfony/finder": "~2.8|~3.0",
  26. "symfony/form": "^3.2.7",
  27. "symfony/http-kernel": "~3.2",
  28. "symfony/polyfill-intl-icu": "~1.0",
  29. "symfony/routing": "~2.8|~3.0",
  30. "symfony/templating": "~2.8|~3.0",
  31. "symfony/translation": "~2.8|~3.0",
  32. "symfony/yaml": "~2.8|~3.0",
  33. "symfony/security": "~2.8|~3.0",
  34. "symfony/security-acl": "~2.8|~3.0",
  35. "symfony/stopwatch": "~2.8|~3.0",
  36. "symfony/console": "~2.8|~3.0",
  37. "symfony/var-dumper": "~2.8.10|~3.1.4|~3.2",
  38. "symfony/expression-language": "~2.8|~3.0",
  39. "symfony/web-link": "~3.3"
  40. },
  41. "suggest": {
  42. "symfony/finder": "",
  43. "symfony/asset": "For using the AssetExtension",
  44. "symfony/form": "For using the FormExtension",
  45. "symfony/http-kernel": "For using the HttpKernelExtension",
  46. "symfony/routing": "For using the RoutingExtension",
  47. "symfony/templating": "For using the TwigEngine",
  48. "symfony/translation": "For using the TranslationExtension",
  49. "symfony/yaml": "For using the YamlExtension",
  50. "symfony/security": "For using the SecurityExtension",
  51. "symfony/stopwatch": "For using the StopwatchExtension",
  52. "symfony/var-dumper": "For using the DumpExtension",
  53. "symfony/expression-language": "For using the ExpressionExtension",
  54. "symfony/web-link": "For using the WebLinkExtension"
  55. },
  56. "autoload": {
  57. "psr-4": { "Symfony\\Bridge\\Twig\\": "" },
  58. "exclude-from-classmap": [
  59. "/Tests/"
  60. ]
  61. },
  62. "minimum-stability": "dev",
  63. "extra": {
  64. "branch-alias": {
  65. "dev-master": "3.3-dev"
  66. }
  67. }
  68. }