samman / yii2-advanced-debugger
There is no license information available for the latest version (1.2.1) of this package.
Package info
github.com/Mazen-Al-Samman/yii2-advanced-debugger
Type:yii2-extension
pkg:composer/samman/yii2-advanced-debugger
1.2.1
2022-11-01 16:42 UTC
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']
],
];

