This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bridge/Twig/composer.json

77 lines
2.5 KiB
JSON
Raw Normal View History

2011-09-24 18:13:35 +01:00
{
"name": "symfony/twig-bridge",
"type": "symfony-bridge",
"description": "Symfony Twig Bridge",
"keywords": [],
"homepage": "https://symfony.com",
2011-09-24 18:13:35 +01:00
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
2011-09-24 18:13:35 +01:00
}
],
"require": {
2017-05-17 19:41:56 +01:00
"php": "^7.1.3",
"symfony/contracts": "^1.0.2",
2019-01-14 14:06:08 +00:00
"twig/twig": "^1.37.1|^2.6.2"
2011-09-24 18:13:35 +01:00
},
2012-05-12 17:52:27 +01:00
"require-dev": {
"symfony/asset": "~3.4|~4.0",
"symfony/dependency-injection": "~3.4|~4.0",
"symfony/finder": "~3.4|~4.0",
"symfony/form": "^4.2.3",
"symfony/http-foundation": "~3.4|~4.0",
"symfony/http-kernel": "~3.4|~4.0",
2015-10-14 15:40:43 +01:00
"symfony/polyfill-intl-icu": "~1.0",
"symfony/routing": "~3.4|~4.0",
"symfony/templating": "~3.4|~4.0",
"symfony/translation": "~4.2",
"symfony/yaml": "~3.4|~4.0",
"symfony/security": "~3.4|~4.0",
"symfony/security-acl": "~2.8|~3.0",
"symfony/stopwatch": "~3.4|~4.0",
"symfony/console": "~3.4|~4.0",
"symfony/var-dumper": "~3.4|~4.0",
"symfony/expression-language": "~3.4|~4.0",
"symfony/web-link": "~3.4|~4.0",
"symfony/workflow": "~3.4|~4.0"
2012-05-12 17:52:27 +01:00
},
"conflict": {
"symfony/console": "<3.4",
"symfony/form": "<4.2.3",
"symfony/translation": "<4.2"
},
2011-09-24 18:13:35 +01:00
"suggest": {
"symfony/finder": "",
2014-12-28 18:57:17 +00:00
"symfony/asset": "For using the AssetExtension",
"symfony/form": "For using the FormExtension",
"symfony/http-kernel": "For using the HttpKernelExtension",
"symfony/routing": "For using the RoutingExtension",
"symfony/templating": "For using the TwigEngine",
"symfony/translation": "For using the TranslationExtension",
"symfony/yaml": "For using the YamlExtension",
"symfony/security": "For using the SecurityExtension",
"symfony/stopwatch": "For using the StopwatchExtension",
"symfony/var-dumper": "For using the DumpExtension",
2017-04-04 12:58:36 +01:00
"symfony/expression-language": "For using the ExpressionExtension",
"symfony/web-link": "For using the WebLinkExtension"
},
"autoload": {
"psr-4": { "Symfony\\Bridge\\Twig\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
2012-02-25 02:26:20 +00:00
"extra": {
"branch-alias": {
2018-05-07 15:51:25 +01:00
"dev-master": "4.2-dev"
2012-02-25 02:26:20 +00:00
}
}
2011-09-24 18:13:35 +01:00
}