foothing / laravel-performance-tracker
0.1.0
2016-09-21 22:54 UTC
Requires
- illuminate/http: ~5.0
- illuminate/log: ~5.0
- illuminate/support: ~5.0
This package is auto-updated.
Last update: 2024-10-22 23:40:25 UTC
README
A simple Middleware to track pageload time for Laravel 5.
Install and setup
Add composer dependency in require
or require-dev
"require": [ "foothing/laravel-performance-tracker": "~0.1" ]
Add the service provider in your config/app.php
'providers' => [ // ... Foothing\Laravel\PTracker\ServiceProvider::class ]
Finally, enable Middleware in your app/Http/Kernel.php
protected $middleware = [ // ... \Foothing\Laravel\PTracker\Middleware\SimplePerformanceMiddleware::class ];
You're done. In this first implementation the page load time is written to your logfile. Time is in seconds.
License
MIT