Skip to content

Commit f44ccdc

Browse files
committed
fix: New option for sdk
1 parent e297267 commit f44ccdc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Sentry/Laravel/LumenServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function register()
6565
'environment' => $app->environment(),
6666
'prefixes' => array($basePath),
6767
'project_root' => $basePath,
68-
'excluded_app_paths' => array($basePath . '/vendor'),
68+
'in_app_exclude' => array($basePath . '/vendor'),
6969
'integrations' => [new Integration()]
7070
],
7171
$userConfig

src/Sentry/Laravel/ServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function register()
8585
'environment' => $app->environment(),
8686
'prefixes' => array($basePath),
8787
'project_root' => $basePath,
88-
'excluded_app_paths' => array($basePath . '/vendor'),
88+
'in_app_exclude' => array($basePath . '/vendor'),
8989
'integrations' => [new Integration()]
9090
],
9191
$userConfig

0 commit comments

Comments
 (0)