alexanderthegreat96 / debugger-utility-alpha
Typo3 Debugger Utility Var Dumper port for every project
1.0.6
2023-01-26 00:57 UTC
Requires
- php: ^8.0
This package is not auto-updated.
Last update: 2025-05-01 11:13:27 UTC
README
TYPO3 DebuggerUtility::var_dump() dependency free and running outside Typo3 itself. This version accommodates PHP 8.0+ and basically any platform
Installation
Install with composer
composer require alexanderthegreat96/debugger-utility-alpha
Usage/Examples
<?php require "vendor/autoload.php"; $cars = array ( array("Volvo",22,18), array("BMW",15,13), array("Saab",5,2), array("Land Rover",17,15) ); debugger_utility($cars, 'This is my cars Array');
or
<?php use Alexanderthegreat96\DebuggerUtilityAlpha; require "vendor/autoload.php" $cars = array ( array("Volvo",22,18), array("BMW",15,13), array("Saab",5,2), array("Land Rover",17,15) ); DebuggerUtility::var_dump($cars, 'This is my cars Array');