-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.04 KB
/
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
44
45
46
47
48
49
{
"name": "icicleio/socket",
"description": "Asynchronous stream socket server and client for Icicle.",
"keywords": [
"asynchronous",
"async",
"stream",
"socket",
"server",
"client"
],
"homepage": "http://icicle.io",
"license": "MIT",
"authors": [
{
"name": "Aaron Piotrowski",
"email": "[email protected]"
}
],
"require": {
"icicleio/icicle": "~2.0",
"icicleio/stream": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"suggest": {
"ext-openssl": "Enables using SSL/TLS on stream sockets."
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Icicle\\Socket\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Icicle\\Tests\\Socket\\": "tests"
}
}
}