onza-me / helpers
Laravel helpers.
1.0.0
2020-09-11 18:04 UTC
Requires
- php: ^7.4
- ext-json: *
- illuminate/support: ^7.0|^8.0
- onza-me/backend_jwt: dev-master
- sentry/sentry-laravel: ^1.9
Requires (Dev)
- orchestra/testbench: ^5.0
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2024-10-28 21:01:18 UTC
README
Publish configurations
php artisan vendor:publish --provider="OnzaMe\Helpers\HelpersServiceProvider"
Sentry initialization
php artisan vendor:publish --provider="Sentry\Laravel\ServiceProvider"
Configure Sentry
SENTRY_LARAVEL_DSN={DSN URL}
You can easily verify that Sentry is capturing errors in your Laravel application by creating a debug route that will throw an exception:
Route::get('/debug-sentry', function () {
throw new Exception('My first Sentry error!');
});