Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Commit

Permalink
Update kanata core.
Browse files Browse the repository at this point in the history
  • Loading branch information
lotharthesavior committed Nov 7, 2023
1 parent f8faf93 commit 3a41bad
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 23 deletions.
2 changes: 2 additions & 0 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ HTTP_PORT_PARAM=--port
#SSL_CERTIFICATE=/path/to/cert
#SSL_KEY=/path/to/key

SESSION_DRIVER=file

# --------------------------------------------------------------------
# WebSocket
# --------------------------------------------------------------------
Expand Down
38 changes: 18 additions & 20 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
// Session
// ------------------------------------------------------------------

'session-driver' => env('SESSION_DRIVER', 'file'),
'session-key' => env('SESSION_PREFIX', 'eyJpZCI6IjU0'),

// ------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ WS_SSL_KEY=/path/to/key

> **Helper**: `socket_communication()`
> This helper is useful for broadcasting messages asynchronously. Imagine that you need to broadcast a
> message form a place where you have no access to the WebSocket context, e.g.: from a queue handler. This
> returns an instance of a `\Swoole\Table` class that is consumed by the WebSocket Server "tick". In the
> message from a place where you have no access to the WebSocket context, e.g.: from a queue handler. This
> returns an instance of an Eloquent Model class that is consumed by the WebSocket Server "tick". In the
> next second (interval customizable by the environment variable `WS_TICK_INTERVAL`) the information added
> to it will be consumed in the other side. This is how you use it:
>
Expand Down Expand Up @@ -936,4 +936,4 @@ echo make_path_relative_to_project('/var/www/storage/cache');

### Roadmap

- upgrade flysystem (https://flysystem.thephpleague.com/v1/docs/) to v3.
- upgrade flysystem (https://flysystem.thephpleague.com/v1/docs/) to v3.
2 changes: 2 additions & 0 deletions storage/sessions/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore

0 comments on commit 3a41bad

Please sign in to comment.