paulloft / dumphper
DumPHPer is an advanced PHP variable dumper, that shows detailed info in a simple way..
Installs: 220
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
pkg:composer/paulloft/dumphper
Requires
- php: >=7.3
- ext-mbstring: *
This package is auto-updated.
Last update: 2025-09-28 03:59:22 UTC
README
DumPHPer is an advanced PHP variable dumper, that shows detailed info in a simple way.
Usages
\Utils\Dumphper::dump($data);
Extended functionality
function d() { $args = func_get_args(); foreach ($args as $a) { \Utils\Dumphper::dump($a); } exit(); }
Installation
Requres PHP 7.3 or higher
PHPdumphper is PSR-4 compliant and can be installed using composer. Just add paulloft/dumphper
to your composer.json.
"require": { "paulloft/dumphper": "*" }
or run in shell
composer require paulloft/dumphper