quillphp / sentry
Sentry integration for the Quill PHP framework
dev-main
2026-04-06 10:04 UTC
Requires
- php: ^8.3
- quillphp/quill: ^0.0.2
- sentry/sentry: ^4.0
Requires (Dev)
- phpunit/phpunit: ^11.0
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