martinmdev / php-debug
PHP Debug functions
Installs: 93
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/martinmdev/php-debug
Requires (Dev)
- phpunit/phpunit: ^8.3
This package is auto-updated.
Last update: 2025-11-29 02:57:04 UTC
README
Usage
<?php require __DIR__ . '/../../vendor/autoload.php'; use Martinm\Debug\DebugHelper; DebugHelper::create()->a('http://example.com/foo/bar'); // prints: // <a href="http://example.com/foo/bar" target="_blank">http://example.com/foo/bar</a><br /> vd([ 'x' => 1, ]); // prints: // array(1) { // 'x' => // int(1) // }
Installation
composer require martinmdev/php-debug