mxmbsocket/composer.json
Chris Boden d075b99c26 [WebSockets] Handshake encoding + case insensitivity
Updated RFC6455 handshaker to check values case insensitively
Made sure RFC6455 handshaker matches encoding properly
Added mbstring as a requirement for Ratchet
Refs #28, #30
2012-05-19 23:42:13 -04:00

29 lines
753 B
JSON

{
"name": "cboden/Ratchet"
, "type": "library"
, "description": "PHP WebSocket server component library"
, "keywords": ["WebSockets", "Server", "Ratchet", "Sockets"]
, "website": "http://socketo.me"
, "repository": "https://github.com/cboden/Ratchet"
, "license": "MIT"
, "authors": [
{
"name": "Chris Boden"
, "email": "cboden@gmail.com"
, "homepage": "http://res.im"
}
]
, "autoload": {
"psr-0": {
"Ratchet\\Tests": "tests"
, "Ratchet": "src"
}
}
, "require": {
"php": ">=5.3.2"
, "ext-mbstring": "*"
, "guzzle/guzzle": "2.5.*"
, "symfony/http-foundation": "2.1.*"
, "react/socket": "dev-master"
}
}