bug #11637 fix dependencies on HttpFoundation component (xabbuh)

This PR was merged into the 2.5 branch.

Discussion
----------

fix dependencies on HttpFoundation component

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

The ``closeOutputBuffers()`` method was added to the ``Response`` class of the HttpFoundation in Symfony 2.5. Therefore, parts that are calling this method must depend on ``symfony/http-foundation`` 2.5 or higher.

Commits
-------

fe2f007 fix dependencies on HttpFoundation component
This commit is contained in:
Nicolas Grekas 2014-08-13 21:16:20 +02:00
commit 8c222110c9
2 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@
"require": {
"php": ">=5.3.3",
"symfony/twig-bridge": "~2.5",
"symfony/http-foundation": "~2.5",
"symfony/http-kernel": "~2.1"
},
"require-dev": {

View File

@ -18,7 +18,7 @@
"require": {
"php": ">=5.3.3",
"symfony/event-dispatcher": "~2.5",
"symfony/http-foundation": "~2.4",
"symfony/http-foundation": "~2.5",
"symfony/debug": "~2.5",
"psr/log": "~1.0"
},