marekskopal/buggregator-client

用于xhprof的Buggregator客户端库,作为PSR-15中间件

v0.1.0 2024-03-11 21:59 UTC

This package is auto-updated.

Last update: 2024-09-19 15:42:51 UTC


README

作为PSR-15中间件的Buggregator客户端库用于xhprof。

安装

composer require marekskopal/buggregator-client

使用

使用XhprofMiddleware类作为PSR-15中间件。

use MarekSkopal\BuggregatorClient\Middleware;

$xhprofMiddleware = new XhprofMiddleware(
    appName: 'MyApp',
    url: (string) getenv('PROFILER_ENDPOINT'),
));

//e.g. phpleague/route

$router->middleware($xhprofMiddleware);