Skip to content

[READ ONLY] LongRunning Sentry

License

Notifications You must be signed in to change notification settings

LongRunning/sentry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LongRunning Sentry

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