You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package makes use of [Laravels package auto-discovery mechanism](https://medium.com/@taylorotwell/package-auto-discovery-in-laravel-5-5-ea9e3ab20518).
28
-
29
-
If for some reason you want manually control this:
30
-
- add the package to the `extra.laravel.dont-discover` key in `composer.json`, e.g.
31
-
```json
32
-
"extra": {
33
-
"laravel": {
34
-
"dont-discover": [
35
-
"bilfeldt/laravel-http-client-logger"
36
-
]
37
-
}
38
-
}
39
-
```
40
-
- if don't use Laravel's package auto-discovery or you use dont-discover key
41
-
- add the following class to the `providers` array in `config/app.php`:
- if you want to manually load it only in non-production environments, instead you can add this to your `AppServiceProvider` with the `register()` method:
This package makes use of [Laravels package auto-discovery mechanism](https://medium.com/@taylorotwell/package-auto-discovery-in-laravel-5-5-ea9e3ab20518) so **there is no need to do any futher steps** - skip directly to the [usage](#usage) section below. If for some reason you wish to opt-out of package auto discovery, check [the Laravel Docs](https://laravel.com/docs/8.x/packages#opting-out-of-package-discovery) for more details.
64
24
65
25
### Lumen
66
26
67
-
If you use Lumen add the following service provider in `bootstrap/app.php`:
27
+
NOTE: Lumen is **not** officially supported by this package. However, we are currently not aware of any incompatibilities.
28
+
29
+
If you use Lumen register the service provider in `bootstrap/app.php` like so:
0 commit comments