PHP code example of foothing / laravel-performance-tracker

1. Go to this page and download the library: Download foothing/laravel-performance-tracker library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

foothing / laravel-performance-tracker example snippets


'providers' => [
	// ...
	Foothing\Laravel\PTracker\ServiceProvider::class
]

protected $middleware = [
	// ...
	\Foothing\Laravel\PTracker\Middleware\SimplePerformanceMiddleware::class
];