Publishable

This commit is contained in:
Alexander Blasl 2025-01-16 15:29:58 +01:00
parent bf5068255d
commit 9129c517b5
2 changed files with 3 additions and 4 deletions

View File

@ -111,7 +111,7 @@ return [
'replication' => [ 'replication' => [
'mode' => env('WEBSOCKETS_REPLICATION_MODE', 'local'), 'mode' => env('WEBSOCKETS_REPLICATION_MODE', 'custom'),
'modes' => [ 'modes' => [
'local' => [ 'local' => [

View File

@ -44,9 +44,8 @@ class WebSocketsServiceProvider extends ServiceProvider
); );
$this->publishes([ $this->publishes([
__DIR__.'/../database/migrations/0000_00_00_000000_create_websockets_statistics_entries_table.php' => database_path('migrations/0000_00_00_000000_create_websockets_statistics_entries_table.php'), __DIR__.'/Websocket' => app_path('Websocket')
__DIR__.'/../database/migrations/0000_00_00_000000_rename_statistics_counters.php' => database_path('migrations/0000_00_00_000000_rename_statistics_counters.php'), ]);
], 'migrations');
$this->registerEventLoop(); $this->registerEventLoop();