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.3(1mo ago)0386↑141.7%MITPHPPHP ^8.1

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 3w ago

READMEChangelog (4)Dependencies (4)Versions (5)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

43

—

FairBetter than 89% of packages

Maintenance93

Actively maintained with recent releases

Popularity17

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity46

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 ~15 days

Total

4

Last Release

36d ago

PHP version history (2 changes)v1.0.0PHP ^8.4

v1.0.3PHP ^8.1

### 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 (13 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

3345.3M347](/packages/psalm-plugin-laravel)[zidbih/laravel-deadlock

Make temporary Laravel workarounds expire and fail CI when ignored.

985.4k](/packages/zidbih-laravel-deadlock)[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)
