xkovacikm / laravel-timer
A small tool to measure operations execution time.
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 5
pkg:composer/xkovacikm/laravel-timer
Requires
- php: >=5.4
This package is auto-updated.
Last update: 2025-12-09 14:42:12 UTC
README
A small tool to measure operations execution time. Forked from https://github.com/Astatroth/laravel-timer.
This version adds service provider, and facade automatically after installing. Also, timer methods don't require parameter.
Installation
composer require xkovacikm/laravel-timer
Usage
Start the Timer with:
tstart();
Dumps timer current time:
tread();
Dumps timer and die:
tstop();