long-running / sentry
1.1.0
2021-12-18 08:40 UTC
Requires
- php: ^8.0
- long-running/core: ^1.0
- psr/log: ^1.1 || ^2.0 || ^3.0
- sentry/sdk: ^3.1
- symfony/yaml: ^5.4 || ^6.0
Requires (Dev)
- phpunit/phpunit: ^9.5.10
- sentry/sentry-symfony: ^4.0
- symfony/framework-bundle: ^5.4 || ^6.0
- symfony/phpunit-bridge: ^6.0
Suggests
- sentry/sentry-symfony: When using the Symfony bundle
Conflicts
- sentry/sentry: <3.1.3
- sentry/sentry-symfony: <4.0
README
This is a read only split from the LongRunning mono repository.
If you want to make changes, please create a pull request there.
This packages requires Sentry SDK 3.1 or higher.
Installation
composer require long-running/sentry
Symfony
If you are using Symfony, make sure to install the Sentry Symfony SDK.
composer require sentry/sentry-symfony
Then register the bundle:
<?php // config/bundles.php return [ // ... Sentry\SentryBundle\SentryBundle::class => ['all' => true], LongRunning\Core\Bundle\LongRunningBundle::class => ['all' => true], LongRunning\Sentry\Bundle\LongRunningSentryBundle::class => ['all' => true], ];