tiden/telemetry-laravel

Tiden error tracking for Laravel — auto-captures reported exceptions and sends them to your Tiden project. Built on tiden/telemetry-php.

Maintainers

Package info

github.com/qase-tms/tiden-telemetry-laravel

pkg:composer/tiden/telemetry-laravel

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-06-15 18:22 UTC

This package is auto-updated.

Last update: 2026-06-15 18:24:00 UTC


README

Laravel integration for Tiden error tracking. Auto-captures every exception Laravel reports and sends it to your Tiden project. Built on tiden/telemetry-php.

Install

composer require tiden/telemetry-laravel

The service provider is auto-discovered. Set your DSN:

TIDEN_DSN=http://<publicKey>@<host:ingestPort>/<projectId>
TIDEN_RELEASE=my-app@1.2.3

That's it — reported exceptions now appear in your Tiden project. environment defaults to APP_ENV.

Configuration (optional)

php artisan vendor:publish --tag=tiden-config

config/tiden.php:

Key Env Default Description
dsn TIDEN_DSN Project DSN. No DSN → the integration is inert.
release TIDEN_RELEASE App version.
environment TIDEN_ENVIRONMENT APP_ENV Deployment environment.
send_default_pii TIDEN_SEND_DEFAULT_PII false Send likely-PII (off by default; PII is scrubbed).

Manual capture

use Tiden\Sdk;

Sdk::captureException($e);
Sdk::captureMessage('checkout completed', 'info');

License

MIT