bazo / phpusher
PHP push client for nodepush
v1.1.0
2013-07-05 19:08 UTC
Requires
- bazo/tembo: @dev
This package is not auto-updated.
Last update: 2026-03-09 20:23:07 UTC
README
NodePush PHP client. Push client for NodePush https://github.com/bazo/NodePush
Usage:
$pushClient = new Bazo\PHPusher\PushClient('http://localhost:8080'); $data = [ 'id' => 1, 'timestamp' => time(), 'message' => 'lorem ipsum' ]; $pushClient->open(); $pushClient->push($room, $event, $data); $pushClient->close();