richardpiel / dev-bar
DevBar plugin for CakePHP
Installs: 312
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- cakephp/cakephp: ^3.5
Requires (Dev)
- phpunit/phpunit: ^5.7.14|^6.0
README
This plugin displays a red bar at the top of all the pages of your application if the debug is enabled.
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require richardpiel/dev-bar
Then you'll need to load the plugin in your src/Application.php
file.
$this->addPlugin('DevBar');
or you can use the console to do this for you.
bin/cake plugin load DevBar