├── README.md ├── composer.json ├── copy └── config │ └── plugin │ ├── app.php │ ├── bootstrap.php │ ├── middleware.php │ └── route.php └── src ├── Bootstrap ├── LaravelQuery.php └── LaravelRedisExec.php ├── DataCollector ├── ExceptionsCollector.php ├── LaravelQueryCollector.php ├── LaravelRedisCollector.php ├── MemoryCollector.php ├── MessagesCollector.php ├── PDO │ ├── PDOCollector.php │ └── TraceablePDO.php ├── PhpInfoCollector.php ├── RequestDataCollector.php ├── RouteCollector.php ├── SessionCollector.php ├── ThinkPdoCollector.php ├── TimeDataCollector.php └── WebmanCollector.php ├── DebugBar.php ├── Ext └── HttpExt.php ├── Helper ├── ArrayHelper.php ├── ConfigHelper.php └── StringHelper.php ├── Install.php ├── Laravel ├── DataCollector │ └── QueryCollector.php ├── DataFormatter │ └── QueryFormatter.php ├── README.md └── Resources │ └── sqlqueries │ └── widget.js ├── Middleware └── DebugBarMiddleware.php ├── Resources └── webman-debugbar.css ├── Storage ├── AutoCleanFileStorage.php └── FileStorage.php ├── Traits └── DebugBarOverwrite.php ├── WebmanDebugBar.php ├── WebmanHttpDriver.php └── WebmanJavascriptRenderer.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/composer.json -------------------------------------------------------------------------------- /copy/config/plugin/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/copy/config/plugin/app.php -------------------------------------------------------------------------------- /copy/config/plugin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/copy/config/plugin/bootstrap.php -------------------------------------------------------------------------------- /copy/config/plugin/middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/copy/config/plugin/middleware.php -------------------------------------------------------------------------------- /copy/config/plugin/route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/copy/config/plugin/route.php -------------------------------------------------------------------------------- /src/Bootstrap/LaravelQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Bootstrap/LaravelQuery.php -------------------------------------------------------------------------------- /src/Bootstrap/LaravelRedisExec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Bootstrap/LaravelRedisExec.php -------------------------------------------------------------------------------- /src/DataCollector/ExceptionsCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/ExceptionsCollector.php -------------------------------------------------------------------------------- /src/DataCollector/LaravelQueryCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/LaravelQueryCollector.php -------------------------------------------------------------------------------- /src/DataCollector/LaravelRedisCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/LaravelRedisCollector.php -------------------------------------------------------------------------------- /src/DataCollector/MemoryCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/MemoryCollector.php -------------------------------------------------------------------------------- /src/DataCollector/MessagesCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/MessagesCollector.php -------------------------------------------------------------------------------- /src/DataCollector/PDO/PDOCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/PDO/PDOCollector.php -------------------------------------------------------------------------------- /src/DataCollector/PDO/TraceablePDO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/PDO/TraceablePDO.php -------------------------------------------------------------------------------- /src/DataCollector/PhpInfoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/PhpInfoCollector.php -------------------------------------------------------------------------------- /src/DataCollector/RequestDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/RequestDataCollector.php -------------------------------------------------------------------------------- /src/DataCollector/RouteCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/RouteCollector.php -------------------------------------------------------------------------------- /src/DataCollector/SessionCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/SessionCollector.php -------------------------------------------------------------------------------- /src/DataCollector/ThinkPdoCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/ThinkPdoCollector.php -------------------------------------------------------------------------------- /src/DataCollector/TimeDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/TimeDataCollector.php -------------------------------------------------------------------------------- /src/DataCollector/WebmanCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DataCollector/WebmanCollector.php -------------------------------------------------------------------------------- /src/DebugBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/DebugBar.php -------------------------------------------------------------------------------- /src/Ext/HttpExt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Ext/HttpExt.php -------------------------------------------------------------------------------- /src/Helper/ArrayHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Helper/ArrayHelper.php -------------------------------------------------------------------------------- /src/Helper/ConfigHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Helper/ConfigHelper.php -------------------------------------------------------------------------------- /src/Helper/StringHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Helper/StringHelper.php -------------------------------------------------------------------------------- /src/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Install.php -------------------------------------------------------------------------------- /src/Laravel/DataCollector/QueryCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Laravel/DataCollector/QueryCollector.php -------------------------------------------------------------------------------- /src/Laravel/DataFormatter/QueryFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Laravel/DataFormatter/QueryFormatter.php -------------------------------------------------------------------------------- /src/Laravel/README.md: -------------------------------------------------------------------------------- 1 | 该目录下的内容来自于 https://github.com/barryvdh/laravel-debugbar 2 | 并针对性的做一些调整(不适用于 webman 的地方) -------------------------------------------------------------------------------- /src/Laravel/Resources/sqlqueries/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Laravel/Resources/sqlqueries/widget.js -------------------------------------------------------------------------------- /src/Middleware/DebugBarMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Middleware/DebugBarMiddleware.php -------------------------------------------------------------------------------- /src/Resources/webman-debugbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Resources/webman-debugbar.css -------------------------------------------------------------------------------- /src/Storage/AutoCleanFileStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Storage/AutoCleanFileStorage.php -------------------------------------------------------------------------------- /src/Storage/FileStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Storage/FileStorage.php -------------------------------------------------------------------------------- /src/Traits/DebugBarOverwrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/Traits/DebugBarOverwrite.php -------------------------------------------------------------------------------- /src/WebmanDebugBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/WebmanDebugBar.php -------------------------------------------------------------------------------- /src/WebmanHttpDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/WebmanHttpDriver.php -------------------------------------------------------------------------------- /src/WebmanJavascriptRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webman-tech/debugbar/HEAD/src/WebmanJavascriptRenderer.php --------------------------------------------------------------------------------