PHPackages                             tiden/php - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. tiden/php

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

tiden/php
=========

Tiden error-tracking PHP SDK. Emits the envelope wire format to a Tiden ingest endpoint, with no third-party error-SDK dependency.

00

Since Jun 10Compare

[ Source](https://github.com/qase-tms/tiden-php)[ Packagist](https://packagist.org/packages/tiden/php)[ RSS](/packages/tiden-php/feed)WikiDiscussions Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

tiden/telemetry-php
===================

[](#tidentelemetry-php)

Framework-agnostic error-tracking PHP SDK for [Tiden](https://github.com/qase-tms/tiden-telemetry-php). Emits the envelope wire format to a Tiden ingest endpoint — **no third-party error-SDK dependency**. For Laravel, use the `tiden/telemetry-laravel` bridge (built on this).

```
composer require tiden/telemetry-php
```

```
use Tiden\Sdk;

Sdk::init([
    'dsn' => getenv('TIDEN_DSN'), // http://@/
    'release' => 'my-app@1.2.3',
    'environment' => 'production',
    // 'send_default_pii' => false, // default: scrub likely-PII before send
]);

// With captureGlobals (default), uncaught exceptions + fatals are reported
// automatically. Manual capture:
try {
    risky();
} catch (\Throwable $e) {
    Sdk::captureException($e);
}

Sdk::captureMessage('checkout completed', 'info');
Sdk::addBreadcrumb(new \Tiden\Breadcrumb('cache miss', category: 'cache'));
Sdk::configureScope(fn ($s) => $s->setTag('tenant', 'acme'));
```

What it does
------------

[](#what-it-does)

- Parses the DSN to the edge URL `/api//envelope/?tiden_key=…`.
- Normalizes `\Throwable` (incl. cause chains) into `exception.values[]` with stack frames (`in_app` heuristic, app-relative paths).
- Serializes the envelope and POSTs it via curl (synchronous, never throws; honors HTTP 429 + Retry-After).
- Scrubs likely-PII (auth headers, secret-ish keys) unless `send_default_pii`.
- `before_send` hook to mutate or drop events.

Source maps are a browser concern (JS bundles); PHP isn't minified, so there is no source-map counterpart here.

Develop
-------

[](#develop)

```
composer install
composer test
```

MIT © Qase

###  Health Score

9

—

LowBetter than 0% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity11

Early-stage or recently created project

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/35f45eb02c022369be1a9350eba9cb2c21c22358c0900921a2637526a39d62ad?d=identicon)[nipisarev](/maintainers/nipisarev)

### Embed Badge

![Health badge](/badges/tiden-php/health.svg)

```
[![Health](https://phpackages.com/badges/tiden-php/health.svg)](https://phpackages.com/packages/tiden-php)
```

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B11.9k](/packages/psr-log)[open-telemetry/api

API for OpenTelemetry PHP.

2041.5M289](/packages/open-telemetry-api)[open-telemetry/sdk

SDK for OpenTelemetry PHP.

2428.5M356](/packages/open-telemetry-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
