fix dependencies on HttpFoundation component

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.
This commit is contained in:
Christian Flothmann 2014-08-11 08:58:04 +02:00
parent 2cf1205ef5
commit fe2f007fde
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"
},