1.1.0 2021-12-18 08:40 UTC

This package is auto-updated.

Last update: 2024-09-22 13:59:29 UTC


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],
];