netpromotion/tracy-wrapper

此包已被废弃,不再维护。作者建议使用 maximebf/debugbar 包。

Tracy 包装器

v1.1.2 2020-02-13 15:55 UTC

This package is not auto-updated.

Last update: 2020-02-13 16:06:55 UTC


README

一个帮助您将 Tracy 注入到您项目的辅助工具。

Lumen + Tracy

用法

<?php // index.php

$panels = [new BarPanelA(), new BarPanelB()];
// or
$panels = function () { // will be called only if Tracy detects development mode
    return [new BarPanelA(), new BarPanelB()];
};

tracy_wrap(function() {
    app()->run();
}, $panels /* optional */);

如何安装

在您的项目目录中运行 composer require netpromotion/tracy-wrapper