-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compatibility broken with socket.io-redis > 0.2.0 #20
Comments
+1 |
@aPoCoMiLogin no problem! I'm using it too so don't worry |
The latest version of socket.io-php-emitter (0.7.0) doesn't work socket.io >= 1.4.0 (see https://github.com/rase-/socket.io-php-emitter/issues/20) so this commit changes package.json to force this project to use socket.io version 1.3.*.
The latest version of socket.io-php-emitter (0.7.0) doesn't work with socket.io >= 1.4.0 (see https://github.com/rase-/socket.io-php-emitter/issues/20). So this commit changes package.json to force this project to use socket.io version 1.3.*.
+1 |
1 similar comment
+1 |
@aPoCoMiLogin How can I use @ashiina 's PR? I'm just copy&pasted on @rase- 's. It works but I don't like this method. |
@jihunleekr my composer.json looks like this: {
"repositories": [
{
"type": "git",
"url": "https://github.com/ashiina/socket.io-php-emitter.git"
}
],
"require": {
"rase/socket.io-emitter": "dev-hotfix/redis-0.2.0-compatibility"
}
} So you have to add repositories collection with @ashiina repository, and in require section you have to add dev-{branch}/{commit/PR} IMO npm is doing it better than composer. |
@aPoCoMiLogin Thank you. It is very helpful. :) |
please merge |
Seems like this repo isn't being maintained for a long time... Please refer to aPoCoMiLogin 's comment on how to use it via composer. |
I now added my fork on packagist here Please go ahead and use this! |
As of [email protected], the redis channel name and msgpack format has changed. The current
socket.io-php-emitter
still uses the old format, and does not work at all.The
socket.io-emitter
(node.js implementation) has updated its code to make it compatible. The PHP implementation also needs it:socketio/socket.io-redis-emitter@e656600
The text was updated successfully, but these errors were encountered: