Skip to content

Commit

Permalink
minor #1452 Fix var-dumper deprecation (dannyvw)
Browse files Browse the repository at this point in the history
This PR was merged into the master branch.

Discussion
----------

Fix var-dumper deprecation

Using the Symfony\Component\HttpKernel\DataCollector\DataCollector::cloneVar() method without the VarDumper component is deprecated since version 3.2 and won't be supported in 4.0. Install symfony/var-dumper version 3.2 or above: 490x

Using the Symfony\Component\Form\Extension\DataCollector\FormDataCollector::cloneVar() method without the VarDumper component is deprecated since version 3.2 and won't be supported in 4.0. Install symfony/var-dumper version 3.2 or above: 171x

Commits
-------

1c0eca3 Fix var-dumper deprecation
  • Loading branch information
javiereguiluz committed Dec 29, 2016
2 parents 4ce8b0e + 1c0eca3 commit 27fe864
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"symfony/finder" : "~2.3|~3.0",
"symfony/phpunit-bridge" : "^2.7",
"symfony/validator" : "~2.3|~3.0",
"symfony/yaml" : "~2.3|~3.0"
"symfony/yaml" : "~2.3|~3.0",
"symfony/var-dumper" : "~2.3|~3.0"
},
"autoload": {
"psr-4": { "JavierEguiluz\\Bundle\\EasyAdminBundle\\": "" },
Expand Down

0 comments on commit 27fe864

Please sign in to comment.