-
When installing laravel-route-statistics v4.0.0 it installs bilfeldt/laravel-request-logger (v3.4.0) along with it. This seems to add the artisan command However when running this
Which makes sense, as I followed only the installation instruction of "laravel-route-statistics" and that one does not mention anything about running also the migrations of "laravel-request-logger". So I wonder if the the "laravel-request-logger" is really needed? If so, should I also follow the manual of that one and publish and run the related migrations? Because so far the laravel-route-statistics seems to run fine w/o doing so. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You do not need to follow the installation instructions from that package. If you do not follow them, not all features from that package are available, however - like this command that you are mentioning. The package is used because it uses logic from that package to do the logging. This could perhaps be refactored to decouple the two packages although: laravel-route-statistics/src/LaravelRouteStatisticsServiceProvider.php Lines 95 to 102 in e1dabb8 I am open to considering such a PR. |
Beta Was this translation helpful? Give feedback.
You do not need to follow the installation instructions from that package. If you do not follow them, not all features from that package are available, however - like this command that you are mentioning.
The package is used because it uses logic from that package to do the logging. This could perhaps be refactored to decouple the two packages although:
laravel-route-statistics/src/LaravelRouteStatisticsServiceProvider.php
Lines 95 to 102 in e1dabb8
I am open to considering such…