Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fe2f007

Browse files
committed
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.
1 parent 2cf1205 commit fe2f007

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Symfony/Bundle/TwigBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"require": {
1919
"php": ">=5.3.3",
2020
"symfony/twig-bridge": "~2.5",
21+
"symfony/http-foundation": "~2.5",
2122
"symfony/http-kernel": "~2.1"
2223
},
2324
"require-dev": {

src/Symfony/Component/HttpKernel/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": ">=5.3.3",
2020
"symfony/event-dispatcher": "~2.5",
21-
"symfony/http-foundation": "~2.4",
21+
"symfony/http-foundation": "~2.5",
2222
"symfony/debug": "~2.5",
2323
"psr/log": "~1.0"
2424
},

0 commit comments

Comments
 (0)