-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 931 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
38
39
40
41
42
43
{
"name": "nemrutco/socket-server",
"description": "Socket Server using Laravel",
"keywords": [
"ReactPHP",
"Laravel",
"Server",
"Socket",
"TCP/IP"
],
"homepage": "http://github.com/nemrutco/socket-server",
"type": "library",
"require": {
"php": ">=5.6.4",
"react/event-loop": "^1.1",
"react/socket": "^1.3"
},
"license": "MIT",
"authors": [{
"name": "Nemrut Creative Studio",
"email": "nemrut@nemrut.co"
}],
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Nemrut\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nemrut\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Nemrut\\Providers\\NemrutServiceProvider"
]
}
}
}