blax-software / laravel-websockets
An easy to launch a Pusher-compatible WebSockets server for Laravel.
Package info
github.com/blax-software/laravel-websockets
pkg:composer/blax-software/laravel-websockets
Requires
- cboden/ratchet: ^0.4.1
- clue/redis-react: ^2.5
- evenement/evenement: ^2.0|^3.0
- facade/ignition-contracts: ^1.0
- guzzlehttp/psr7: ^1.7|^2.0
- illuminate/broadcasting: ^6.3|^7.0|^8.0|^9.0
- illuminate/console: ^6.3|^7.0|^8.0|^9.0
- illuminate/http: ^6.3|^7.0|^8.0|^9.0
- illuminate/queue: ^6.3|^7.0|^8.0|^9.0
- illuminate/routing: ^6.3|^7.0|^8.0|^9.0
- illuminate/support: ^6.3|^7.0|^8.0|^9.0
- pusher/pusher-php-server: ^3.0|^4.0|^5.0|^6.0|^7.0
- react/promise: ^2.8
- symfony/http-kernel: ^4.4|^5.4|^6.0
- symfony/psr-http-message-bridge: ^1.1|^2.0
Requires (Dev)
- clue/block-react: ^1.4
- laravel/legacy-factories: ^1.1
- orchestra/testbench-browser-kit: ^4.0|^5.0|^6.0
- phpunit/phpunit: ^8.5.8|^9.3.3
Suggests
- ext-pcntl: Running the server needs pcntl to listen to command signals and soft-shutdown.
- doctrine/dbal: Required to run database migrations (^2.9|^3.0).
- dev-master
- 2.x-dev
- 2.0.0-beta.37
- 2.0.0-beta.36
- 2.0.0-beta.35
- 2.0.0-beta.34
- 2.0.0-beta.33
- 2.0.0-beta.32
- 2.0.0-beta.31
- 2.0.0-beta.30
- 2.0.0-beta.29
- 2.0.0-beta.28
- 2.0.0-beta.27
- 2.0.0-beta.26
- 2.0.0-beta.25
- 2.0.0-beta.24
- 2.0.0-beta.23
- 2.0.0-beta.22
- 2.0.0-beta.21
- 2.0.0-beta.20
- 2.0.0-beta.19
- 2.0.0-beta.18
- 2.0.0-beta.17
- 2.0.0-beta.16
- 2.0.0-beta.15
- 2.0.0-beta.14
- 2.0.0-beta.13
- 2.0.0-beta.12
- 2.0.0-beta.11
- 2.0.0-beta.10
- 2.0.0-beta.9
- 2.0.0-beta.8
- 2.0.0-beta.7
- 2.0.0-beta.6
- 2.0.0-beta.5
- 2.0.0-beta.4
- 2.0.0-beta.3
- 2.0.0-beta.2
- 2.0.0-beta.1
- 1.x-dev
- 1.14.1
- 1.14.0
- 1.13.2
- 1.13.1
- 1.13.0
- 1.12.0
- 1.11.1
- 1.11.0
- 1.10.0
- 1.9.0
- 1.8.1
- 1.8.0
- 1.7.1
- 1.7.0
- 1.6.1
- 1.6.0
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.1
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-merge-2x-changes
- dev-async-app-managers
- dev-upgrade/laravel-8
- dev-2.x-memory-leak
- dev-console
This package is auto-updated.
Last update: 2026-05-05 15:16:54 UTC
README
Laravel WebSockets
Plug-and-play WebSockets for Laravel with a Pusher-compatible protocol, async fork-based handling, attribute-driven routing, and live operational tooling.
Note
This package is actively maintained as a fork of beyondcode/laravel-websockets.
Features
-
#[Websocket]attribute on regular HTTP controllers — turn any controller method into a WebSocket-callable endpoint with one annotation, no second class to maintain -
Async processing — incoming messages are handled in
pcntl_forkchild processes, so a slow handler never blocks the event loop -
Broadcast from anywhere —
ws_broadcast(),ws_whisper(),ws_broadcast_except()helpers and a staticWebsocketServiceAPI let any controller, job, or service push events to any channel -
Multiple channel types — public,
private-*,presence-*, andopen-presence-*channels with the standard auth handshake -
Live ops tooling —
php artisan websockets:watchrenders connection counts, authenticated users, and per-channel connections, refreshing every second:WebSocket Server — Live Stats 2026-05-05 14:33:35 — refreshing every 1s (Ctrl+C to exit) Live Stats ....................................................................................................................................... Total connections ............................................................................................................................. 12 Authenticated users ............................................................................................................................ 3 Active channels ................................................................................................................................ 1 +-----------+-------------+ | Channel | Connections | +-----------+-------------+ | websocket | 12 | +-----------+-------------+ -
Automatic route recognition — controller class and method names map to event names automatically (
FlightschoolController::index→flightschool.index); override per method or per class via#[Websocket(event: ..., prefix: ..., suffix: ..., needAuth: true)] -
Hot code reload in dev, OPcache in prod —
websocket:steer cache:clearclears OPcache and the controller resolver cache without restarting the running server, so iteration is instant in development while production runs with fully warmed caches -
Pusher-compatible protocol — supports both modern
websocket.*and legacypusher:*action formats, drop-in for Echo and pusher-js clients -
Test helpers —
newConnection(),newActiveConnection(),newPrivateConnection(),newPresenceConnection(), plusassertSentEvent()keep WebSocket tests short
Requirements
- PHP 8.1+
- Laravel 9, 10, 11 or 12
ext-pcntl(for async fork-based handling)
Installation
composer require blax-software/laravel-websockets
Publish the config:
php artisan vendor:publish --provider="BlaxSoftware\LaravelWebSockets\WebSocketsServiceProvider" --tag="config"
Start the server:
php artisan websockets:serve
Default URL is ws://127.0.0.1:6001.
Quick Start
1. Mark a regular controller method as WebSocket-reachable
use BlaxSoftware\LaravelWebSockets\Attributes\Websocket; class FlightschoolController extends Controller { #[Websocket] // event: "flightschool.index" public function index() { ... } #[Websocket(event: 'flightschools.list')] // explicit override public function list() { ... } #[Websocket(needAuth: true)] // requires authenticated socket public function update() { ... } }
2. Broadcast from anywhere
// Helpers ws_broadcast('chat.message', ['text' => 'Hello'], 'chat'); ws_whisper('chat.typing', ['typing' => true], ['1234.1', '1234.2'], 'chat'); ws_broadcast_except('chat.message', ['text' => 'Server msg'], ['1234.1'], 'chat'); // Service API use BlaxSoftware\LaravelWebSockets\Services\WebsocketService; WebsocketService::send('metrics.tick', ['count' => 1], 'websocket'); WebsocketService::broadcastExcept('chat.message', ['text' => 'Hi'], ['1234.1'], 'chat');
3. Build a private/presence auth payload
$auth = wsSession('private-updates', [ 'user_id' => 7, 'user_info' => ['name' => 'Jane'], ]);
4. Watch live stats
php artisan websockets:watch # connection counts and channels php artisan websockets:watch -v # expanded per-connection rows php artisan websockets:info # one-shot snapshot
5. Iterate without restarting
php artisan websocket:steer cache:clear # clear OPcache + resolver cache php artisan websockets:restart # graceful restart php artisan websocket:restart-hard # signal-based force restart
Channel Types
| Type | Prefix | Description |
|---|---|---|
| Public | (none) | Anyone can subscribe |
| Private | private- |
Server-signed auth required |
| Presence | presence- |
Auth required, tracks user list, broadcasts join/leave |
| Open Presence | open-presence- |
Presence semantics without the auth signature — useful for guests |
Testing
$connection = $this->newActiveConnection(['chat']); $this->wsHandler->onMessage($connection, new Message([ 'event' => 'websocket.ping', 'data' => new stdClass(), ])); $connection->assertSentEvent('websocket.pong');
vendor/bin/phpunit --exclude-group=stability,stress,integration,requires-server
Documentation
- Main docs: docs
- Getting started: docs/getting-started/introduction.md
- Helper & testing guide: docs/advanced-usage/helpers-and-testing.md
- Custom handlers: docs/advanced-usage/custom-websocket-handlers.md
Changelog
See CHANGELOG.
Security
Please report vulnerabilities via the issue tracker or by email: office@blax.at.
Credits
License
MIT. See LICENSE.md.