awareness / debugr
Quick and easy debugging for laravel
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/awareness/debugr
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
This package is not auto-updated.
Last update: 2025-11-03 19:08:10 UTC
README
Quick and easy debugging for laravel
Usage
Add Debugr to your composer.json:
{ // composer.json ... "require": { "awareness/debugr": "dev-master" }, ... }
Add an alias in app/config/app.php:
<?php return array( // ... 'aliases' => array( // ... 'Debugr' => 'Awareness\Debugr\Facades', // ... ) // ... );
... and the service provider (also in app/config/app.php):
<?php return array( // ... 'providers' => array( // ... 'Awareness\Debugr\DebugrServiceProvider', // ... ) // ... );
Debug!!!
$stuff = 'things'; Debug::dump($stuff); //=> things