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 2abbb8a451 Merge branch '2.8'
* 2.8:
  Fix undefined array $server
  Fix call to undefined function json_last_error_message
  Fix bug in windows detection
  [ProxyManager] Tmp fix composer reqs issue in ZF
  Fix PropertyInfo extractor namespace in framework bundle
  Add missing exclusions from phpunit.xml.dist
  [Serializer] ObjectNormalizer: don't serialize static methods and props
  [Form] Enhance some FormRegistry deprecation messages
  [Validator] [sl] BIC (SWIFT-BIC) validation constraint
  [WebProfilerBundle] correct typo in show stack trace link
  bumped Symfony version to 2.8.0
  updated VERSION for 2.8.0-BETA1
  updated CHANGELOG for 2.8.0-BETA1
  Fix the server variables in the router_*.php files
  [Validator] Allow an empty path with a non empty fragment or a query
  The following change adds support for Armenian pluralization.
  [2.3][Process] fix Proccess run with pts enabled

Conflicts:
	src/Symfony/Bridge/ProxyManager/composer.json
	src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/FormPass.php
	src/Symfony/Component/Form/FormRegistry.php
2015-11-18 14:48:51 +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-11-18 14:41:01 +01: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.