alexanderthegreat96 / debugger-utility-alpha
Typo3 Debugger Utility Var Dumper port for every project
Installs: 55
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/alexanderthegreat96/debugger-utility-alpha
Requires
- php: ^8.0
This package is not auto-updated.
Last update: 2025-10-02 13:10:56 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');