This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/VarDumper
Nicolas Grekas d33879a9db Merge branch '2.8'
* 2.8:
  [ci] Phpunit tests wont run if composer is installed in a wrapper
  [ci] Add version tag in phpunit wrapper to trigger cache-reset on demand
  fix race condition at mkdir (#16258)
  [VarDumper] Fix PHP7 type-hints compat
  [Bridge] [PhpUnit] fixes documentation markup.
  [PropertyAccess] Port of the performance optimization from 2.3
  trigger deprecation warning when using empty_value
  [PropertyAccess] Test access to dynamic properties
  [PropertyAccess] Fix dynamic property accessing.
  [Serializer] GetSetNormalizer shouldn't set/get static methods
  [Serializer] PropertyNormalizer shouldn't set static properties
  JsonDescriptor - encode container params only once

Conflicts:
	src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php
	src/Symfony/Component/Form/Extension/Core/Type/DateType.php
	src/Symfony/Component/Form/Extension/Core/Type/TimeType.php
	src/Symfony/Component/VarDumper/Tests/Caster/ReflectionCasterTest.php
2015-11-09 13:52:14 +01:00
..
Caster Merge branch '2.8' 2015-11-09 13:52:14 +01:00
Cloner Merge branch '2.8' 2015-11-03 12:45:45 +01:00
Dumper Rely on iconv and symfony/polyfill-* 2015-10-28 03:15:07 +01:00
Exception tweak some deprecation messages 2015-10-06 17:57:37 +02:00
Resources/functions [DebugBundle] adjust after review 2014-09-23 16:25:59 +02:00
Test [VarDumper] replace VarDumperTestCase by trait 2015-11-04 18:48:20 +01:00
Tests Merge branch '2.8' 2015-11-09 13:52:14 +01:00
.gitignore [VarDumper] Ignore /vendor/ directory in git 2015-02-17 17:54:47 +01:00
CHANGELOG.md Revert "Added missing changelog entry" 2015-04-03 09:54:01 +02:00
composer.json Merge branch '2.8' 2015-10-30 16:35:59 -07:00
LICENSE [Debug] fix test 2015-01-13 15:49:42 +01:00
phpunit.xml.dist Merge branch '2.3' into 2.7 2015-10-11 11:39:48 +02:00
README.md Fixed minor typo 2014-11-16 15:23:53 +00:00
VarDumper.php Add more callable type hints 2015-10-05 18:52:37 +02:00

Symfony mechanism for exploring and dumping PHP variables

This component provides a mechanism that allows exploring then dumping any PHP variable.

It handles scalars, objects and resources properly, taking hard and soft references into account. More than being immune to infinite recursion problems, it allows dumping where references link to each other. It explores recursive structures using a breadth-first algorithm.

The component exposes all the parts involved in the different steps of cloning then dumping a PHP variable, while applying size limits and having specialized output formats and methods.