bug #17156 [HttpFoundation] add missing symfony/polyfill-php55 dependency (xabbuh)

This PR was merged into the 2.8 branch.

Discussion
----------

[HttpFoundation] add missing symfony/polyfill-php55 dependency

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

The `json_last_error_msg()` function used in the `JsonResponse` class
requires PHP 5.5.

Commits
-------

3cc4e4d add missing symfony/polyfill-php55 dependency
This commit is contained in:
Nicolas Grekas 2015-12-29 15:27:25 +01:00
commit d9467799c4

View File

@ -17,7 +17,8 @@
],
"require": {
"php": ">=5.3.9",
"symfony/polyfill-php54": "~1.0"
"symfony/polyfill-php54": "~1.0",
"symfony/polyfill-php55": "~1.0"
},
"require-dev": {
"symfony/expression-language": "~2.4|~3.0.0"