forked from ratchetphp/Ratchet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 858 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "maggedotno/Ratchet"
, "type": "library"
, "description": "PHP WebSocket library"
, "keywords": ["WebSockets", "Server", "Ratchet", "Sockets"]
, "homepage": "http://socketo.me"
, "repository": "https://github.com/maggedotno/Ratchet"
, "license": "MIT"
, "authors": [
{
"name": "Chris Boden"
, "email": "[email protected]"
, "role": "Developer"
}
]
, "support": {
"forum": "https://groups.google.com/forum/#!forum/ratchet-php"
, "issues": "https://github.com/cboden/Ratchet/issues"
}
, "autoload": {
"psr-0": {
"Ratchet\\Tests": "tests"
, "Ratchet": "src"
}
}
, "require": {
"php": ">=5.3.3"
, "react/socket": "0.2.*"
, "guzzle/http": "2.8.*"
, "symfony/http-foundation": "2.1.*"
}
}