repat / laravel-5-dbug
A library for nicer looking variable dumps comparable to ColdFusion's cfdump.
v1.3.0
2015-12-14 13:07 UTC
Requires
- php: >=5.4.0
- illuminate/support: >=5.0.0
This package is auto-updated.
Last update: 2024-11-20 08:29:53 UTC
README
laravel-5-dbug is a Laravel package that makes your variable dumps look nicer with the ospintos dBug class. The output is comparable to ColdFusion's cfdump. This repository is a fork from dlcrush/laravel-dbug with an update for Laravel 5 and a few minor fixes.
Installation
- Add the following to your composer.json under require and then run
composer update
"repat/laravel-5-dbug": "~1.*"
OR
composer require repat/laravel-5-dbug
- Add the Service Provider to the providers array in
app/config/app.php
dlcrush\DBug\DBugServiceProvider::class,
- Add alias in
app/config/app.php
'DBug' => dlcrush\DBug\Facades\DBug::class,
Usage
To dump out a variable, do the following:
DBug::DBug($var);
To dump and then die, do the following:
DBug::DBug($var, true);