Download the PHP package timadey/trailscope without Composer
On this page you can find all versions of the php package timadey/trailscope. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download timadey/trailscope
More information about timadey/trailscope
Files in timadey/trailscope
Package trailscope
Short Description Laravel request tracing and user journey observability with step logging, dashboard insights, and database or Redis storage.
License MIT
Informations about the package trailscope
TrailScope
TrailScope is a Laravel request tracing and user journey observability package with step logging, dashboard insights, and database or Redis storage.
Install
Capture Requests
Add the middleware to routes that should be traced:
Exclude noisy paths in config/trail.php:
Add Developer Steps
For the clearest context keys, use named arguments or an associative array:
TrailScope also infers simple positional variable names, so step('checking network', $product, $is_active) is stored as product and is_active when possible. Complex expressions fall back to generated keys.
TrailScope automatically attaches the step to the active request trace, normalizes context, sanitizes sensitive data, resolves identity, and stores the trace through the configured driver.
Storage
The default storage driver is the host database. Redis is also available:
All versions of trailscope with dependencies
illuminate/support Version ^10.0|^11.0|^12.0
illuminate/routing Version ^10.0|^11.0|^12.0
illuminate/database Version ^10.0|^11.0|^12.0
illuminate/queue Version ^10.0|^11.0|^12.0
illuminate/redis Version ^10.0|^11.0|^12.0
inertiajs/inertia-laravel Version ^1.0