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 a0c566504c Merge branch '4.2'
* 4.2: (26 commits)
  Apply php-cs-fixer rule for array_key_exists()
  [Cache] fix warming up cache.system and apcu
  [Security] Change FormAuthenticator if condition
  handles multi-byte characters in autocomplete
  speed up tests running them without debug flag
  [Translations] added missing Croatian validators
  Fix getItems() performance issue with RedisCluster (php-redis)
  [VarDumper] Keep a ref to objects to ensure their handle cannot be reused while cloning
  IntegerType: reject submitted non-integer numbers
  be keen to newcomers
  [HttpKernel] Fix possible infinite loop of exceptions
  fixed CS
  [Validator] Added missing translations for Afrikaans
  do not validate non-submitted form fields in PATCH requests
  Update usage example in ArrayInput doc block.
  [Console] Prevent ArgvInput::getFirstArgument() from returning an option value
  [Validator] Fixed duplicate UUID
  fixed CS
  [EventDispatcher] Fix unknown priority
  Avoid mutating the Finder when building the iterator
  ...
2019-02-23 16:22:31 +01:00
..
Caster Merge branch '4.2' 2019-02-23 16:22:31 +01:00
Cloner Merge branch '4.2' 2019-02-23 16:22:31 +01:00
Command fixed CS 2019-01-16 22:53:45 +01:00
Dumper [VarDumper] add link to source next to class names 2019-02-19 22:52:41 +01:00
Exception Merge branch '2.8' into 3.4 2018-07-26 10:45:46 +02:00
Resources [VarDumper] Allow dd() to be called without arguments 2018-09-21 13:19:29 +02:00
Server Remove unreachable code 2019-01-28 19:03:55 +01:00
Test Merge branch '4.0' into 4.1 2018-07-26 10:55:25 +02:00
Tests [VarDumper] add link to source next to class names 2019-02-19 22:52:41 +01:00
.gitignore [VarDumper] Ignore /vendor/ directory in git 2015-02-17 17:54:47 +01:00
CHANGELOG.md [VarDumper] Implement DsCaster 2019-02-20 12:31:22 +01:00
composer.json Merge branch '4.2' 2018-12-24 11:03:37 +01:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
phpunit.xml.dist Merge branch '2.8' into 3.4 2018-11-11 20:48:54 +01:00
README.md Fix typo in VarDumper README 2016-04-22 14:44:08 +02:00
VarDumper.php [VarDumper] add link to source next to class names 2019-02-19 22:52:41 +01:00

VarDumper Component

The VarDumper component provides mechanisms for walking through any arbitrary PHP variable. Built on top, it provides a better dump() function that you can use instead of var_dump.

Resources