PHPackages                             ygmt/laravel-running-time - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. ygmt/laravel-running-time

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

ygmt/laravel-running-time
=========================

A request execution time statistics tools with Laravel

v1.1.5(5y ago)095MITPHPPHP &gt;=7.0.0

Since Mar 11Pushed 5y agoCompare

[ Source](https://github.com/ygmt/laravel-running-time)[ Packagist](https://packagist.org/packages/ygmt/laravel-running-time)[ RSS](/packages/ygmt-laravel-running-time/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (11)Used By (0)

laravel-running-time
====================

[](#laravel-running-time)

[![Latest Stable Version](https://camo.githubusercontent.com/c7cf6dd47b4722d26a3d8aa5fccebbc626f76aed7245fbe22c6b684d86234e62/68747470733a2f2f706f7365722e707567782e6f72672f792d75692f6c61726176656c2d72756e6e696e672d74696d652f762f737461626c65)](https://packagist.org/packages/y-ui/laravel-running-time)[![Total Downloads](https://camo.githubusercontent.com/2d9faa0bc3390fd4bfd22dc75460f2b911fde3fdc9f12f1a716f2acc25af8cce/68747470733a2f2f706f7365722e707567782e6f72672f792d75692f6c61726176656c2d72756e6e696e672d74696d652f646f776e6c6f616473)](https://packagist.org/packages/y-ui/laravel-running-time)[![Latest Unstable Version](https://camo.githubusercontent.com/965af3cc7cc4c8dab96b8986437d45d874b8189ff6b68df3eda086ac4340692a/68747470733a2f2f706f7365722e707567782e6f72672f792d75692f6c61726176656c2d72756e6e696e672d74696d652f762f756e737461626c65)](https://packagist.org/packages/y-ui/laravel-running-time)[![License](https://camo.githubusercontent.com/d46344297950e3739ac8dcc76563a185b3dd1cf56be303c6df991c843f606eda/68747470733a2f2f706f7365722e707567782e6f72672f792d75692f6c61726176656c2d72756e6e696e672d74696d652f6c6963656e7365)](https://packagist.org/packages/y-ui/laravel-running-time)

[![Image](https://github.com/y-ui/y-ui.github.io/raw/master/table-20190815.png)](https://github.com/y-ui/y-ui.github.io/blob/master/table-20190815.png)

Installation
------------

[](#installation)

```
composer require ygmt/laravel-running-time dev-master

```

Configuration
-------------

[](#configuration)

1. Open your `app/Http/Kernel.php` and add the following to `$middleware` array:

    ```
    \RunningTime\Middleware\RunningTimeMiddleware::class,
    ```
2. Run the command below to publish the package config file `config/runningtime.php`:

    ```
    php artisan vendor:publish --provider='RunningTime\RunningTimeServiceProvider'
    ```

- If you want to run with batch mode, this requires redis. open your `config/runningtime.php`:

    ```
    'mode' => 'delay',
    ```
- If out of memory after running the command, open your `config/runningtime.php`:

    ```
    'memory_limit' => '512M', //Modify to the appropriate value
    ```

    or run command with `--lessMemory`

Usage
-----

[](#usage)

### Simple usage

[](#simple-usage)

```
#This will count the last 7 days of data
php artisan running-time

#This will show the top 20 path
php artisan running-time --line=20

php artisan running-time --start=2019-03-03

php artisan running-time --start='1 month ago'

php artisan running-time --path='your path'

#Significantly reduce memory usage but increase time spent
php artisan running-time --lessMemory
```

### Options

[](#options)

```
--line  Maximum number of displayed lines
--start Statistical start time
--end   Statistical end time
--path  Statistical path runtime
--lessMemory Significantly reduce memory usage and increase time spent

```

Clean log files
---------------

[](#clean-log-files)

### Simple usage

[](#simple-usage-1)

```
php artisan running-time:clear --all

php artisan running-time:clear --recent=30
```

TODO LIST
---------

[](#todo-list)

- Web page

License
-------

[](#license)

laravel-running-time is an open-sourced software licensed under the MIT license.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 58.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~66 days

Recently: every ~125 days

Total

9

Last Release

2087d ago

Major Versions

v0.2 → v1.02019-03-15

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/54536378?v=4)[ygmt](/maintainers/ygmt)[@ygmt](https://github.com/ygmt)

---

Top Contributors

[![y-ui](https://avatars.githubusercontent.com/u/7334733?v=4)](https://github.com/y-ui "y-ui (10 commits)")[![zaxw](https://avatars.githubusercontent.com/u/23615813?v=4)](https://github.com/zaxw "zaxw (4 commits)")[![eleven26](https://avatars.githubusercontent.com/u/10000532?v=4)](https://github.com/eleven26 "eleven26 (3 commits)")

### Embed Badge

![Health badge](/badges/ygmt-laravel-running-time/health.svg)

```
[![Health](https://phpackages.com/badges/ygmt-laravel-running-time/health.svg)](https://phpackages.com/packages/ygmt-laravel-running-time)
```

###  Alternatives

[grumpydictator/firefly-iii

Firefly III: a personal finances manager.

22.8k69.3k](/packages/grumpydictator-firefly-iii)[blair2004/nexopos

The Free Modern Point Of Sale System build with Laravel, TailwindCSS and Vue.js.

1.2k2.3k](/packages/blair2004-nexopos)[php-junior/laravel-video-chat

Laravel Video Chat using Socket.IO and WebRTC

82018.1k](/packages/php-junior-laravel-video-chat)[vcian/pulse-active-sessions

A Laravel Pulse card to show active user session.

11469.2k](/packages/vcian-pulse-active-sessions)[splitsoftware/split-sdk-php

Split SDK for PHP

161.3M2](/packages/splitsoftware-split-sdk-php)[vwo/vwo-php-sdk

VWO server side sdk

12166.4k](/packages/vwo-vwo-php-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
