Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,28 @@
# Laravel Echo Server
# Laravel Echo Server (With whisper subscribe)

NodeJs server for Laravel Echo broadcasting with Socket.io.

### Edited:
I added the `PresenceChannelWhisper` just to listen to all whispers broadcast client events. This hasn't been implemented so I decided to fork this project for my own.

Optionally, you can configure laravel-echo-server to publish an event on each update to a presence channel, by setting `databaseConfig.publishWhisper` to `true`:

```json
{
"database": "redis",
"databaseConfig": {
"redis" : {
"port": "6379",
"host": "localhost"
},
"publishWhisper": true
}
}
```

## Important:
Using this modified version of laravel echo requires you to at least have read the documentation below.

## System Requirements

The following are required to function properly.
Expand Down
Loading