Download the PHP package lampyra/laravel without Composer
On this page you can find all versions of the php package lampyra/laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lampyra/laravel
More information about lampyra/laravel
Files in lampyra/laravel
Package laravel
Short Description Self-hosted, lightweight exception capture for Laravel apps. Ships exceptions to a lampyra-server instance.
License MIT
Informations about the package laravel
lampyra/laravel
Composer package for shipping PHP exceptions and JavaScript errors from a Laravel app to a self-hosted Lampyra dashboard.
60-second install
Add to .env:
Verify:
For browser error capture, drop @lampyra in your main Blade layout's <head>.
Full documentation
The complete reference lives on the dashboard. Replace <your-domain> below with your deployed instance:
- English:
https://errors.<your-domain>.com/docs/en/package/01-installation - Deutsch:
https://errors.<your-domain>.com/docs/de/package/01-installation
Topics covered there:
- Installation, configuration, env vars
- The
lampyra:testcommand - Payload structure and PII scrubbing
- Local rate limit
- JavaScript error capture via
@lampyra - Ingest API contract
- Troubleshooting
PII scrubbing — quick reference
The outgoing payload is scrubbed in two passes (see config/lampyra.php):
- Key-name pass (
scrub_keys) — redacts values whose key matches a pattern. Recursive, case-insensitive, supports*suffix/prefix*wildcards. Use for known field names likepassword,*_secret,authorization. -
Value-pattern pass (
scrub_value_patterns) — runs regex replacements over every string leaf. Use for PII that key matching cannot reach: data inside JSON-encodedrequest.body_excerpt, positionalqueries[].bindings, or values interpolated intoexception.message. Example: - User email — set
LAMPYRA_INCLUDE_USER_EMAIL=falseto droppayload.user.email. The user id is always sent.
License
MIT.
All versions of laravel with dependencies
illuminate/contracts Version ^11.0 || ^12.0 || ^13.0
illuminate/support Version ^11.0 || ^12.0 || ^13.0
illuminate/http Version ^11.0 || ^12.0 || ^13.0
guzzlehttp/guzzle Version ^7.0