onza-me / helpers
Laravel helpers.
Installs: 40
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/onza-me/helpers
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: 2025-09-28 22:53:43 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!');
});