2017 © Pedro Peláez
 

library debugr

Quick and easy debugging for laravel

image

awareness/debugr

Quick and easy debugging for laravel

  • Sunday, June 2, 2013
  • by colbyr
  • Repository
  • 1 Watchers
  • 0 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

debugr

Quick and easy debugging for laravel, (*1)

Usage

Add Debugr to your composer.json:, (*2)

{ // composer.json
  ...
  "require": {
    "awareness/debugr": "dev-master"
  },
  ...
}

Add an alias in app/config/app.php:, (*3)

<?php

return array(
  // ...
  'aliases' => array(
    // ...
    'Debugr' => 'Awareness\Debugr\Facades',
    // ...
  )
  // ...
);

... and the service provider (also in app/config/app.php):, (*4)

<?php

return array(
  // ...
  'providers' => array(
    // ...
    'Awareness\Debugr\DebugrServiceProvider',
    // ...
  )
  // ...
);

Debug!!!, (*5)

$stuff = 'things';
Debug::dump($stuff); //=> things

The Versions

02/06 2013

dev-master

9999999-dev

Quick and easy debugging for laravel

  Sources   Download

MIT

The Requires