astatroth/laravel-timer

A small tool to measure operations execution time.
26,413 8
Install
composer require astatroth/laravel-timer
PHP:>=5.4
License:MIT
Last Updated:Aug 13, 2018
Links: GitHub  ·  Packagist
Maintainer: Astatroth

laravel-timer

A small tool to measure operations execution time.

Installation

composer require "astatroth/laravel-timer":"dev-master"

Add the service provider ...

Astatroth\LaravelTimer\LaravelTimerServiceProvider::class,

or if you use Lumen

Astatroth\LaravelTimer\LumenTimerServiceProvider::class,

... and facade:

'Timer' => Astatroth\LaravelTimer\Timer::class,

Usage

Just start the Timer with

Timer::timerStart('timer-name');

If you start and stop the same timer multiple times, the measured intervals will be accumulated.

Reading specified timer current time:

Timer::timerRead('timer-name);

Stop the timer:

Timer::timerStop('timer-name');

Have fun! ;)

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

612,604,198 9,704
laravel/framework

The Laravel Framework.

551,557,428 34,802
laravel/tinker

Powerful REPL for the Laravel framework.

465,424,253 7,437