Debugger and toolbar for Yii2 applications
Pico-inspired UI, scoped CSS, light/dark mode, and 14 inspection panels
composer require yii2-extensions/debug:^0.1 --devEnable the debug module in your application configuration (config/web.php).
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => \yii\debug\Module::class,
'allowedIPs' => ['127.0.0.1', '::1'],
];
}The toolbar appears at the bottom of every rendered page; click any panel chip to open the full debugger.
Configuration
PHP info
History
Request
Router
Logs
Database
Profiling
Timeline
Events
Queue
Queue job
Dump
Asset bundles
User
User Roles and Permissions
User Switch User
For detailed configuration options and advanced usage.