samman / yii2-advanced-debugger
本包最新版本(1.2.1)没有提供许可证信息。
1.2.1
2022-11-01 16:42 UTC
Requires
- yiisoft/yii2: *
- yiisoft/yii2-debug: ~2.1
README
Yii2 Advanced Debugger
高级API调试面板的包。
功能
通过此包添加到Yii2调试器的新面板
安装
安装此扩展的首选方式是通过composer。
运行以下命令:
php composer.phar require samman/yii2-advanced-debugger
或者在您的composer.json文件的require部分添加以下内容:
"samman/yii2-advanced-debugger": "*"
在您的main-local.php中,应该添加以下内容:
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
'panels' => [
'respanel' => ['class' => 'samman\debug\ResponsePanel'],
'curlpanel' => ['class' => 'samman\debug\CurlPanel']
],
];

