bug #13183 [DependencyInjection] force ExpressionLanguage version >= 2.6 (xabbuh)

This PR was merged into the 2.6 branch.

Discussion
----------

[DependencyInjection] force ExpressionLanguage version >= 2.6

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #13176
| License       | MIT
| Doc PR        |

The DependencyInjection component requires the ExpressionLanguage
component to be present in version 2.6 or higher to be able to use
expressions in service configurations since Symfony 2.6.

Commits
-------

625a02c force ExpressionLanguage version >= 2.6
This commit is contained in:
Nicolas Grekas 2014-12-31 12:28:05 +01:00
commit 8565d492e0

View File

@ -23,6 +23,9 @@
"symfony/config": "~2.2",
"symfony/expression-language": "~2.6"
},
"conflict": {
"symfony/expression-language": "<2.6"
},
"suggest": {
"symfony/yaml": "",
"symfony/config": "",