xkovacikm / laravel-timer
A small tool to measure operations execution time.
dev-master
2023-02-09 08:27 UTC
Requires
- php: >=5.4
This package is auto-updated.
Last update: 2025-06-09 13:38:06 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();