ytake / socketio-cli
Send events and receive socket.io PHP client
Installs: 776
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 2
Forks: 332
pkg:composer/ytake/socketio-cli
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2022-02-01 12:35:16 UTC
README
MIT Licenced
install
"require": { "ytake/socketio-cli": "dev-master" },
Send messages and Receive
// namespace support $client->client("http://localhost:3000")->query(['query' => 1]) // namespace ->of('/active')->connection(function() use($client){ // event receive $client->on('connection', function($data) use($client){ // value from socket.io server var_dump($data); }); // event emit $client->emit('sender', ['hello']); // event receive $client->on('message', function($data) use($client){ // value from socket.io server var_dump($data); $client->disconnect(); }); })->keepAlive();
Licence
This software is distributed under MIT License. See license.txt file for more info.
Special Thanks
Special thanks goes to Wisembly team authors of Elephant.io