File tree Expand file tree Collapse file tree 5 files changed +603
-62
lines changed Expand file tree Collapse file tree 5 files changed +603
-62
lines changed Original file line number Diff line number Diff line change @@ -37,3 +37,7 @@ SCOUT_DRIVER=meilisearch
37
37
SCOUT_QUEUE = true
38
38
MEILISEARCH_HOST = http://meilisearch:7700
39
39
MEILISEARCH_NO_ANALYTICS = false
40
+
41
+ SENTRY_LARAVEL_DSN =
42
+ SENTRY_TRACES_SAMPLE_RATE = 1.0
43
+ SENTRY_PROFILES_SAMPLE_RATE = 1.0
Original file line number Diff line number Diff line change 3
3
use Illuminate \Foundation \Application ;
4
4
use Illuminate \Foundation \Configuration \Exceptions ;
5
5
use Illuminate \Foundation \Configuration \Middleware ;
6
+ use Sentry \Laravel \Integration ;
6
7
7
8
return Application::configure (basePath: dirname (__DIR__ ))
8
9
->withRouting (
15
16
//
16
17
})
17
18
->withExceptions (function (Exceptions $ exceptions ) {
18
- //
19
+ Integration:: handles ( $ exceptions );
19
20
})->create ();
Original file line number Diff line number Diff line change 13
13
"http-interop/http-factory-guzzle" : " ^1.2" ,
14
14
"laravel/framework" : " ^12.1.1" ,
15
15
"laravel/scout" : " ^10.13.1" ,
16
- "meilisearch/meilisearch-php" : " ^1.13"
16
+ "meilisearch/meilisearch-php" : " ^1.13" ,
17
+ "sentry/sentry-laravel" : " ^4.13"
17
18
},
18
19
"require-dev" : {
19
20
"fakerphp/faker" : " ^1.24.1" ,
You can’t perform that action at this time.
0 commit comments