yagas/yii2-debug4mongo

Yii2 MongoDB调试工具

v0.0.4 2024-06-25 03:47 UTC

This package is auto-updated.

Last update: 2024-09-25 04:20:15 UTC


README

Yii 2 MongoDB调试


本项目是yii2-debug的扩展,使用MongoDB来存储调试数据。

目录结构

  src/                 代码目录
  src/models/          数据模型
  src/views/           视图文件
  src/controllers/     控制器

安装依赖

  • PHP支持 >= 5.4
  • yii2-mongodb
  • yii2-debug支持 >= 2.1.25(基于此版本构建而来)

安装说明

composer require yagas/yii2-debug4mongo

配置说明

if (YII_ENV_DEV) {
    $config['bootstrap'][] = 'debug';
    $config['modules']['debug'] = [
        'class' => 'yagas\debug\Module',
        'logTarget' => [
            'class' => 'yagas\debug\LogTarget',
            'app_no' => 'localhost_001', // 为当前站点设定标识
        ],
        'percent' => 10, // 百分之十的几率清除历史数据(GC)
    ];
}