quillphp/sentry

Sentry integration for the Quill PHP framework

Maintainers

Package info

github.com/quillphp/quill-sentry

pkg:composer/quillphp/sentry

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-04-06 10:04 UTC

This package is auto-updated.

Last update: 2026-04-06 11:55:43 UTC


README

Sentry integration for the Quill PHP Framework. Provides effortless error tracking and performance monitoring.

Installation

composer require quillphp/sentry

Usage

use Quill\Sentry\Sentry;

$app->use(Sentry::new([
    'dsn' => 'your-sentry-dsn',
    'environment' => 'production',
]));

Configuration

Option Default Description
`environment` `'production'` The environment name.
`release` `'1.0.0'` Application release version.
`sample_rate` `1.0` Percentage of errors to report (0 to 1).
`traces_sample_rate` `null` Percentage of transactions to report for tracing (0 to 1).

License

MIT