gourmet / whoops

CakePHP 3 plugin to support Whoops sexy PHP error handling
http://gourmet.github.io/whoops
MIT License
24 stars 1 forks source link

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.