samman / yii2-advanced-debugger
Installs: 1 235
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 1
Forks: 2
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: *
- yiisoft/yii2-debug: ~2.1
README
Yii2 Advanced Debugger
Package for advanced API debugging panels.
Features
New Panels Added to the Yii2 debugger via this package:
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require samman/yii2-advanced-debugger
or add
"samman/yii2-advanced-debugger": "*"
to the require section of your composer.json
file.
In your main-local.php
you should add the following
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
'panels' => [
'respanel' => ['class' => 'samman\debug\ResponsePanel'],
'curlpanel' => ['class' => 'samman\debug\CurlPanel']
],
];