minor #24231 [DebugBundle] Fix the var-dumper requirement in composer.json (skalpa)

This PR was merged into the 3.4 branch.

Discussion
----------

[DebugBundle] Fix the var-dumper requirement in composer.json

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

The v3.4 of the debug bundle calls `VarCloner::setMinDepth()` and thus requires v3.4+ of the var-dumper component. However, the composer file has not been updated in 30cd70d.

I upped the var-dumper requirement to `~3.4|~4.0`.

Commits
-------

d761a76 Require v3.4+ of the var-dumper component
This commit is contained in:
Nicolas Grekas 2017-09-18 09:44:12 +02:00
commit 12bb22c4eb
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
"ext-xml": "*",
"symfony/http-kernel": "~2.8|~3.0|~4.0",
"symfony/twig-bridge": "~2.8|~3.0|~4.0",
"symfony/var-dumper": "~2.8|~3.0|~4.0"
"symfony/var-dumper": "~3.4|~4.0"
},
"require-dev": {
"symfony/config": "~3.3|~4.0",