timenz / emitter
Laravel socket.io emitter based on wisembly/elephant.io
v0.0.1
2015-04-05 08:13 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
- wisembly/elephant.io: ~3.0
This package is not auto-updated.
Last update: 2024-11-09 18:06:22 UTC
README
Simple laravel socket.io emitter based on wisembly/socket.io (socket.io v1.* emitter only)
Instalation
add to composer
"require": {
"timenz/emitter": "dev-master",
},
run
composer update
add to config/app.php profiders
'Timenz\Emitter\EmitterServiceProvider',
if you want custom name add to aliases
'SocketIo' => 'Timenz\Emitter\Facades\Emitter',
publish config
php artisan config:publish timenz/emitter
test
Emitter::emit('node', array('foo' => 'bar'))