Skip to content

Commit

Permalink
Fix compatibility issue by making dependencies versions more specific
Browse files Browse the repository at this point in the history
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.*.
  • Loading branch information
rodrigoprimo committed Jan 17, 2016
1 parent 18e85bc commit c219695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nodeapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"socket.io": "^1.3.5",
"socket.io-redis": "^0.1.4"
"socket.io": "~1.3.5",
"socket.io-redis": "~0.1.4"
}
}

0 comments on commit c219695

Please sign in to comment.