diff --git a/config/system.php b/config/system.php new file mode 100644 index 0000000..49ed704 --- /dev/null +++ b/config/system.php @@ -0,0 +1,24 @@ + $limits, + 'commands_overlapping_expires_at' => env('COMMANDS_OVERLAPPING_EXPIRES_AT', 15), + 'commands' => [ + 'aggregate_article_views' => [ + 'default_step' => env('AGGREGATE_ARTICLE_VIEWS_DEFAULT_STEP'), + ], + ], +]; diff --git a/src/BeamServiceProvider.php b/src/BeamServiceProvider.php index a1b3ef5..665318f 100644 --- a/src/BeamServiceProvider.php +++ b/src/BeamServiceProvider.php @@ -84,6 +84,7 @@ public function boot() __DIR__ . '/../public/' => public_path('vendor/beam'), __DIR__ .'/../config/beam.php' => config_path('beam.php'), __DIR__ .'/../config/services.php' => config_path('services.remp.php'), + __DIR__ .'/../config/system.php' => config_path('system.php'), ], ['beam-assets', 'laravel-assets'] );