-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 906 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
{
"name": "aza/socket",
"description": "AzaSocket - Anizoptera CMF sockets abstraction component. Provides convenient universal API for using sockets in PHP (via sockets or stream extensions).",
"keywords": [
"socket", "pair", "unix", "client", "server", "accept", "non-block", "tcp"
],
"homepage": "https://github.com/Anizoptera/AzaSocket",
"license": "MIT",
"support": {
"issues": "https://github.com/Anizoptera/AzaSocket/issues"
},
"authors": [
{"name": "Amal Samally", "email": "[email protected]", "homepage": "https://github.com/amal"},
{"name": "AzaGroup Members"}
],
"require": {
"php": ">=5.3.3"
},
"suggest": {
"ext-sockets": "Used for maximum efficiency"
},
"autoload": {
"psr-0": {
"Aza\\Components\\Socket": ""
}
},
"target-dir": "Aza/Components/Socket",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev"
}