We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c02097 commit bce5689Copy full SHA for bce5689
readme.md
@@ -78,7 +78,9 @@ php artisan vendor:publish
78
For Lumen, register a different Provider in `bootstrap/app.php`:
79
80
```
81
-$app->register(Barryvdh\Debugbar\LumenServiceProvider::class);
+if (env('APP_DEBUG')) {
82
+ $app->register(Barryvdh\Debugbar\LumenServiceProvider::class);
83
+}
84
85
86
To change the configuration, copy the file to your config folder and enable it:
0 commit comments