* Bump sentry/sentry-laravel from 0.8.0 to 0.9.2 Bumps [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel) from 0.8.0 to 0.9.2. - [Release notes](https://github.com/getsentry/sentry-laravel/releases) - [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGES) - [Commits](https://github.com/getsentry/sentry-laravel/compare/0.8.0...0.9.2) Signed-off-by: dependabot[bot] <support@dependabot.com> * Update SENTRY_DSN env variable
12 lines
273 B
PHP
12 lines
273 B
PHP
<?php
|
|
|
|
return [
|
|
'dsn' => env('SENTRY_LARAVEL_DSN'),
|
|
|
|
// capture release as git sha
|
|
'release' => is_dir(__DIR__.'/../.git') ? trim(exec('git log --pretty="%h" -n1 HEAD')) : null,
|
|
|
|
// Capture bindings on SQL queries
|
|
'breadcrumbs.sql_bindings' => true,
|
|
];
|