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

Skip to content

Commit 8c22211

Browse files
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
2 parents 1ce0ad5 + fe2f007 commit 8c22211

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)