Skip to content

Sentry integration plugin for Glowie Framework

License

Notifications You must be signed in to change notification settings

glowieframework/sentry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sentry for Glowie

This plugin integrates Sentry error tracking with your Glowie application.

Installation

Install in your Glowie project using Composer:

composer require glowieframework/sentry

Then add the Sentry class to the app/config/Config.php file, into the plugins array:

'plugins' => [
    // ... other plugins here
    \Glowie\Plugins\Sentry\Sentry::class,
],

Configuration

Create a PHP project in Sentry, then copy the DSN URL and paste it in your application .env file.

SENTRY_DSN=https://mysentryapp.ingest.us.sentry.io/123456

To test if the integration works, throw any exception in your application and check if it will be captured on Sentry dashboard.

Credits

Sentry plugin and Glowie are currently being developed by Gabriel Silva.