Download the PHP package sushi-market/laravel-info without Composer
On this page you can find all versions of the php package sushi-market/laravel-info. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sushi-market/laravel-info
More information about sushi-market/laravel-info
Files in sushi-market/laravel-info
Package laravel-info
Short Description TODO
License MIT
Homepage https://github.com/sushi-market/laravel-info
Informations about the package 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
The package auto-discovers itself via Laravel's package discovery. No manual provider registration needed.
Built-in sections
| Section | What it shows |
|---|---|
| Stack | Laravel version, PHP version, SAPI, Octane, Vite |
| Environment | App environment, server IP, client IP |
| Config | Cache driver, queue driver, session driver, mail, timezone, locale, debug mode |
| Runtime | Memory usage, peak memory, request time, OPcache status |
| Cache | Whether packages/services/config/events/routes are cached |
| Services | Database connectivity, Redis connectivity, Horizon status |
Auth
In any environment other than local, access is controlled via LARAVEL_INFO_PASSWORD:
| Value | Behaviour |
|---|---|
| not set | denied |
LARAVEL_INFO_PASSWORD=false |
open, no password required |
LARAVEL_INFO_PASSWORD=secret |
Basic Auth with that password |
The username is ignored — only the password is checked.
Adding custom sections
Implement the Section interface:
Register it in your AppServiceProvider:
The section will appear as a card on the page automatically.
Route
Named route: laravel-info.index