Skip to content

Commit c90d181

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 b4a977d commit c90d181

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)