# 微擎调试工具条 **Repository Path**: we7coreteam/devtool ## Basic Information - **Project Name**: 微擎调试工具条 - **Description**: 微擎调试工具条 类似laravel debugbar - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 7 - **Created**: 2017-08-29 - **Last Updated**: 2024-12-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # devtool 1. composer require we7/devtool v0.1.5 2. bootstrap.inc.php 第一行加入 ``` include IA_ROOT.'/vendor/autoload.php'; ``` 3. bootstrap.inc.php 最后一行加入 ``` we7debugbar(); ``` 4. db.class.php 修改 ``` $pdo = new $dbclass($dsn, $cfg['username'], $cfg['password'], $options); if(DEVELOPMENT && class_exists('\We7\Dev\DebugBar\W7\W7TraceablePDO')) { $pdo = new \We7\Dev\DebugBar\W7\W7TraceablePDO($pdo); } ```