长期运行 / 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
这是从LongRunning单体仓库中分离出来的只读包。
如果您想进行修改,请在此处创建拉取请求。
此包需要Sentry SDK 3.1或更高版本。
安装
composer require long-running/sentry
Symfony
如果您使用的是Symfony,请确保安装Sentry Symfony SDK。
composer require sentry/sentry-symfony
然后注册该包
<?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], ];