Skip to content

gourmet/whoops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Coverage Status Total Downloads Latest Stable Version

Whoops

Built to seamlessly integrate Whoops with CakePHP 3.

Install

Using Composer:

composer require gourmet/whoops:~1.0

As this plugin only offers a Whoops handler for CakePHP, there is no need to enable it per se. You only need to configure that handler instead of Cake's own ErrorHandler by replacing the following line in bootstrap.php:

(new ErrorHandler(Configure::read('Error')))->register();

with the Whoops handler:

(new \Gourmet\Whoops\Error\WhoopsHandler(Configure::read('Error')))->register();

That's it!

License

Copyright (c)2015, Jad Bitar and licensed under The MIT License.