Buggregator client library for xhprof as PSR-15 middleware.
composer require marekskopal/buggregator-client
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);