8000 minor #24231 [DebugBundle] Fix the var-dumper requirement in composer… · symfony/symfony@12bb22c · GitHub
[go: up one dir, main page]

Skip to content

Commit 12bb22c

Browse files
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::setMi 8000 nDepth()` 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
2 parents c4159b1 + d761a76 commit 12bb22c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/DebugBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"ext-xml": "*",
2121
"symfony/http-kernel": "~2.8|~3.0|~4.0",
2222
"symfony/twig-bridge": "~2.8|~3.0|~4.0",
23-
"symfony/var-dumper": "~2.8|~3.0|~4.0"
23+
"symfony/var-dumper": "~3.4|~4.0"
2424
},
2525
"require-dev": {
2626
"symfony/config": "~3.3|~4.0",

0 commit comments

Comments
 (0)
0