Files
monica/config/sentry.php
T
dependabot[bot]andAlexis Saettler e5bbf2c54b Bump sentry/sentry-laravel from 0.8.0 to 0.9.2 (#1582)
* 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
2018-07-26 10:39:54 +02:00

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