PHPackages                             shippinno/laravel-process-log - 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. shippinno/laravel-process-log

ActiveLibrary

shippinno/laravel-process-log
=============================

Log Laravel process time and memory usage.

v1.0.4(4y ago)0883PHPPHP &gt;=7.1

Since Jan 22Pushed 2mo ago4 watchersCompare

[ Source](https://github.com/shippinno/laravel-process-log)[ Packagist](https://packagist.org/packages/shippinno/laravel-process-log)[ RSS](/packages/shippinno-laravel-process-log/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (4)Dependencies (2)Versions (12)Used By (0)

Laravel Process Log
===================

[](#laravel-process-log)

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

[](#installation)

```
composer require shippinno/laravel-process-log
```

Setup
-----

[](#setup)

### For Artisan commands logging

[](#for-artisan-commands-logging)

Let `Shippinno\ProcessLog\ProcessLog::class` to be included in bootstrappers of your Console Kernel (usually `App\Console\Kernel`).

```
class Kernel extends ConsoleKernel
{
    // ...

    protected function bootstrappers()
    {
        return array_merge(
            $this->bootstrappers,
            [ProcessLog::class]
        );
    }
}
```

Run an Artisan command and it will be logged like below.

```
[2019-01-22 15:20:13] production.INFO: Starting up process. {"command":"php artisan some:command","pid":12345} []
[2019-01-22 15:20:21] production.INFO: Shutting down process. {"command":"php artisan some:command","time":"8.258[s]","memory":"34[mb]","pid":12345} []

```

### For HTTP requests logging

[](#for-http-requests-logging)

Same for your HTTP Kernel (usually `App\Http\Kernel`).

```
class Kernel extends HttpKernel
{
    // ...

    protected function bootstrappers()
    {
        return array_merge(
            $this->bootstrappers,
            [ProcessLog::class]
        );
    }
}
```

Make an HTTP request and it will be logged like below.

```
[2019-01-22 15:41:26] production.INFO: Starting up process. {"method":"GET","uri":"/foo/bar?baz","pid":12345} []
[2019-01-22 15:41:26] production.INFO: Shutting down process. {"method":"GET","uri":"/foo/bar?baz","time":"0.386[s]","memory":"2048[kb]","pid":12345} []

```

Logging is disabled if the app environment is set to `testing`.

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance56

Moderate activity, may be stable

Popularity14

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% 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 ~133 days

Recently: every ~5 days

Total

9

Last Release

1601d ago

Major Versions

v1.0.4 → 2.0.0-RC2021-12-01

PHP version history (3 changes)v1.0.0PHP &gt;=7.1

2.0.0-RCPHP &gt;=7.3

v2.0.1-RC1PHP ^7.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/5c0c43c3f3e8303e9cbefffe9886a7f7b4f4f05f76c756f7b654c8d1d30d6d79?d=identicon)[tanigami](/maintainers/tanigami)

![](https://www.gravatar.com/avatar/398e46df56f8428891ac5447f9dccf4a12c1dc183e6988449ebb4d39d102ab68?d=identicon)[yfhub](/maintainers/yfhub)

---

Top Contributors

[![tanigami](https://avatars.githubusercontent.com/u/86785?v=4)](https://github.com/tanigami "tanigami (10 commits)")[![yfhub](https://avatars.githubusercontent.com/u/22097897?v=4)](https://github.com/yfhub "yfhub (4 commits)")[![t-muraguchi](https://avatars.githubusercontent.com/u/22582660?v=4)](https://github.com/t-muraguchi "t-muraguchi (1 commits)")

### Embed Badge

![Health badge](/badges/shippinno-laravel-process-log/health.svg)

```
[![Health](https://phpackages.com/badges/shippinno-laravel-process-log/health.svg)](https://phpackages.com/packages/shippinno-laravel-process-log)
```

###  Alternatives

[grumpydictator/firefly-iii

Firefly III: a personal finances manager.

22.8k69.3k](/packages/grumpydictator-firefly-iii)[laravel/nightwatch

The official Laravel Nightwatch package.

3486.1M13](/packages/laravel-nightwatch)[anourvalar/eloquent-serialize

Laravel Query Builder (Eloquent) serialization

11320.2M21](/packages/anourvalar-eloquent-serialize)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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