symbiose / websocket-client
A simple PHP WebSocket Client
This package's canonical repository appears to be gone and the package has been frozen as a result.
v0.1.4
2013-11-11 01:28 UTC
Requires
- php: >=5.3.9
- react/socket: 0.3.*
Requires (Dev)
- cboden/ratchet: 0.3.*
- phpunit/phpunit: 3.7.28
This package is not auto-updated.
Last update: 2021-06-21 10:43:52 UTC
README
A simple WebSocket client implemented in php.
Requirements
This library uses PHP 5.3+.
Install
It is recommended that you install the WebSocket client library through composer.
{ "require": { "symbiose/websocket-client": "dev-master" } }
Usage
Here is an example of a simple WebSocket client:
class Client implements WebSocketClient\WebSocketClientInterface { private $client; public function onMessage($data) {} public function sendData($data) { $this->client->sendData($data); } public function setClient(WebSocketClient $client) { $this->client = $client; } } $loop = React\EventLoop\Factory::create(); $client = new WebSocketClient(new Client, $loop); $loop->run();