Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 414 Bytes

File metadata and controls

25 lines (23 loc) · 414 Bytes

Laravel Tool Benchmark

Collecting action execution times in Lumen/Laravel

Installation

Composer

composer require laravel-tool/benchmark

Laravel

Service provider auto discovered

Lumen

Add to bootstrap/app.php

$app->register(LaravelTool\Benchmark\ServiceProvider::class);

Usage

Get list

Benchmark::index();

Clear data

Benchmark::clear();