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

62 lines
2.0 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": "http://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "http://symfony.com/contributors"
}
],
"require": {
2014-11-19 21:23:28 +00:00
"php": ">=5.5.9",
2015-01-15 06:13:06 +00:00
"twig/twig": "~1.18"
2011-09-24 18:13:35 +01:00
},
2012-05-12 17:52:27 +01:00
"require-dev": {
2014-11-19 21:23:28 +00:00
"symfony/finder": "~2.7|~3.0",
"symfony/form": "~2.7|~3.0",
"symfony/http-kernel": "~2.7|~3.0",
Merge branch '2.7' * 2.7: [Hackday] - add trigger error for deprecated clases. [2.3] Remove useless tests skips [ClassLoader] removes deprecated classes from documentation. Add type aliases for allowed types in OptionsResolver [ClassLoader] added missing deprecation notice. [HttpFoundation] Fix an issue caused by php's Bug #66606. [Yaml] Update README.md Don't add Accept-Range header on unsafe HTTP requests simplify hasScheme method adapted merge to 2.5 adapted previous commit for 2.3 [Security] Don't send remember cookie for sub request [Security] fixed wrong phpdoc [HttpKernel] Fix UriSigner::check when _hash is not at the end of the uri [2.3] Cleanup deprecations [Form] Add deprecation message for Form::bind() and Form::isBound() [Validator] add deprecation log (#12674) [Filesystem] Keep executable permission when a file is copied [HttpKernel] RouterListener uses "context" argument when logging route Conflicts: src/Symfony/Bridge/Twig/composer.json src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperTableLayoutTest.php src/Symfony/Bundle/FrameworkBundle/composer.json src/Symfony/Bundle/TwigBundle/composer.json src/Symfony/Component/Debug/composer.json src/Symfony/Component/Form/Tests/AbstractLayoutTest.php src/Symfony/Component/Form/Tests/ResolvedFormTypeTest.php src/Symfony/Component/HttpKernel/CHANGELOG.md src/Symfony/Component/HttpKernel/composer.json src/Symfony/Component/Security/composer.json
2015-01-03 15:56:00 +00:00
"symfony/intl": "~2.7|~3.0",
2014-11-19 21:23:28 +00:00
"symfony/routing": "~2.7|~3.0",
"symfony/templating": "~2.7|~3.0",
"symfony/translation": "~2.7|~3.0",
"symfony/yaml": "~2.7|~3.0",
"symfony/security": "~2.7|~3.0",
"symfony/stopwatch": "~2.7|~3.0",
"symfony/console": "~2.7|~3.0",
"symfony/var-dumper": "~2.7|~3.0",
"symfony/expression-language": "~2.7|~3.0"
2012-05-12 17:52:27 +01:00
},
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",
2014-03-14 10:12:00 +00:00
"symfony/expression-language": "For using the ExpressionExtension"
},
"autoload": {
"psr-0": { "Symfony\\Bridge\\Twig\\": "" }
},
2012-02-25 02:26:20 +00:00
"target-dir": "Symfony/Bridge/Twig",
"minimum-stability": "dev",
2012-02-25 02:26:20 +00:00
"extra": {
"branch-alias": {
2014-11-11 08:37:22 +00:00
"dev-master": "3.0-dev"
2012-02-25 02:26:20 +00:00
}
}
2011-09-24 18:13:35 +01:00
}