gourmet / whoops
Whoops for CakePHP 3
Installs: 37 888
Dependents: 2
Suggesters: 0
Security: 0
Stars: 24
Watchers: 6
Forks: 1
Type:cakephp-plugin
Requires
- filp/whoops: ^2.0
Suggests
- phpunit/phpunit: Allows automated tests to be run without system-wide install.
README
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.