| Package Data | |
|---|---|
| Maintainer Username: | colbyr |
| Maintainer Contact: | idontknow5691@gmail.com (Colby Rabideau) |
| Package Create Date: | 2013-06-02 |
| Package Last Update: | 2013-06-02 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:17:14 |
| Package Statistics | |
|---|---|
| Total Downloads: | 16 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Quick and easy debugging for laravel
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