forked from greevex/react-easy-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 860 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
33
34
35
36
37
{
"name": "greevex/react-easy-server",
"description": "Very easy and powerful socket server solution with describing of any protocol and client scenario. Based on ReactPHP/socket",
"keywords": [
"socket",
"server",
"protocol",
"client",
"react",
"async"
],
"require": {
"php": ">=5.5.0",
"react/socket": "^0.7@dev",
"react/socket-client": "^0.5@dev"
},
"require-dev": {
"phpunit/phpunit": "^4.0@dev"
},
"license": "MIT",
"support": {
"issues": "/~https://github.com/greevex/react-easy-server/issues?state=open",
"source": "/~https://github.com/greevex/react-easy-server"
},
"authors": [
{
"name": "Gregory Ostrovsky",
"email": "greevex@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"greevex\\react\\easyServer\\": "src/"
}
}
}