marekskopal/buggregator-client

Buggregator client library for xhprof as PSR-15 middleware

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

This package is auto-updated.

Last update: 2024-04-19 14:35:09 UTC


README

Buggregator client library for xhprof as PSR-15 middleware.

Install

composer require marekskopal/buggregator-client

Usage

Use XhprofMiddleware class as PSR-15 middleware.

use MarekSkopal\BuggregatorClient\Middleware;

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

//e.g. phpleague/route

$router->middleware($xhprofMiddleware);