PHPackages                             sushi-market/laravel-info - 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. sushi-market/laravel-info

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

sushi-market/laravel-info
=========================

TODO

v1.0.2(1mo ago)0201↑87.5%MITPHPPHP ^8.4

Since May 4Pushed 1mo agoCompare

[ Source](https://github.com/sushi-market/laravel-info)[ Packagist](https://packagist.org/packages/sushi-market/laravel-info)[ Docs](https://github.com/sushi-market/laravel-info)[ RSS](/packages/sushi-market-laravel-info/feed)WikiDiscussions master Synced 1w ago

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

laravel-info
============

[](#laravel-info)

A debug info page for Laravel applications — think `phpinfo()` but for your Laravel stack.

Available at `/laravel-info`, protected by Basic Auth outside of the `local` environment.

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

[](#installation)

```
composer require sushi-market/laravel-info
```

The package auto-discovers itself via Laravel's package discovery. No manual provider registration needed.

Built-in sections
-----------------

[](#built-in-sections)

SectionWhat it showsStackLaravel version, PHP version, SAPI, Octane, ViteEnvironmentApp environment, server IP, client IPConfigCache driver, queue driver, session driver, mail, timezone, locale, debug modeRuntimeMemory usage, peak memory, request time, OPcache statusCacheWhether packages/services/config/events/routes are cachedServicesDatabase connectivity, Redis connectivity, Horizon statusAuth
----

[](#auth)

In any environment other than `local`, access is controlled via `LARAVEL_INFO_PASSWORD`:

ValueBehaviournot setdenied`LARAVEL_INFO_PASSWORD=false`open, no password required`LARAVEL_INFO_PASSWORD=secret`Basic Auth with that passwordThe username is ignored — only the password is checked.

Adding custom sections
----------------------

[](#adding-custom-sections)

Implement the `Section` interface:

```
use DF\LaravelInfo\Contracts\Section;

class QueueSection implements Section
{
    public function title(): string
    {
        return 'Queue';
    }

    public function data(): array
    {
        return [
            'Driver'     => config('queue.default'),
            'Failed jobs' => \DB::table('failed_jobs')->count(),
        ];
    }
}
```

Register it in your `AppServiceProvider`:

```
use DF\LaravelInfo\LaravelInfo;

public function boot(): void
{
    app(LaravelInfo::class)->addSection(new QueueSection());
}
```

The section will appear as a card on the page automatically.

Route
-----

[](#route)

```
GET /laravel-info

```

Named route: `laravel-info.index`

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance93

Actively maintained with recent releases

Popularity16

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~1 days

Total

3

Last Release

33d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/53209140?v=4)[Denis Zakharenko](/maintainers/denis660)[@denis660](https://github.com/denis660)

---

Top Contributors

[![m0nclous](https://avatars.githubusercontent.com/u/18490365?v=4)](https://github.com/m0nclous "m0nclous (12 commits)")

---

Tags

todo

### Embed Badge

![Health badge](/badges/sushi-market-laravel-info/health.svg)

```
[![Health](https://phpackages.com/badges/sushi-market-laravel-info/health.svg)](https://phpackages.com/packages/sushi-market-laravel-info)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3325.1M337](/packages/psalm-plugin-laravel)[renatomarinho/laravel-page-speed

Laravel Page Speed

2.5k1.7M11](/packages/renatomarinho-laravel-page-speed)[illuminate/pipeline

The Illuminate Pipeline package.

9348.3M264](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10533.5M984](/packages/illuminate-pagination)[illuminate/redis

The Illuminate Redis package.

8314.4M356](/packages/illuminate-redis)[illuminate/cookie

The Illuminate Cookie package.

244.5M131](/packages/illuminate-cookie)

PHPackages © 2026

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