1.1.0 2021-12-18 08:40 UTC

This package is auto-updated.

Last update: 2024-04-22 13:11:58 UTC


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