2017 © Pedro Peláez
 

library debuggers-vardumper

Extension of Symfony's VarDumper component, with a Github inspired color theme.

image

pdeans/debuggers-vardumper

Extension of Symfony's VarDumper component, with a Github inspired color theme.

  • Saturday, November 4, 2017
  • by pdeans
  • Repository
  • 1 Watchers
  • 0 Stars
  • 17 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 42 % Grown

The README.md

Prettier Var Dumper

Better looking and functioning alternative to PHP's native var_dump(). Built on top of Symfony's VarDumper component, with a Github inspired color theme., (*1)

Installation

Install via Composer., (*2)

$ composer require pdeans/debuggers-vardumper

Usage

Create a new instance of the Dumper class, and pass any variable to the dump() method for output via the browser or cli. The dump() method accepts an optional second paramater to add a label for the output., (*3)

use pdeans\Debuggers\Vardumper\Dumper;

$dumper = new Dumper();

$arr = [1,2,3];
$dumper->dump($arr);

// With label
$dumper->dump($arr, 'array values');

// With label and suppress the source output information (file:line number)
$dumper->dump($arr, 'array values', false);

The Versions

04/11 2017

dev-master

9999999-dev

Extension of Symfony's VarDumper component, with a Github inspired color theme.

  Sources   Download

MIT

The Requires

 

debug debugger vardumper vardump

04/11 2017

v1.0.0

1.0.0.0

Extension of Symfony's VarDumper component, with a Github inspired color theme.

  Sources   Download

MIT

The Requires

 

debug debugger vardumper vardump