-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.14 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
{
"name": "bardoqi/byteferry",
"description": "ByteFerry is a PHP library for processing the stream binary data of the socket communication, such as socket stream, file stream, byte buffer and so on. ByteFerry will enhance you to build a communication project not in weeks but in days even in hours.",
"keywords": [
"socket",
"stream",
"stream-buffer",
"byte-buffer",
"binary-buffer",
"communication",
"php7"
],
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/bardoqi/byteferry/issues"
},
"authors": [
{
"name": "Bardo Qi",
"email": "bardoqi@gmail.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": "~7.0",
"php-64bit": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.6",
"squizlabs/php_codesniffer": "^2.7"
},
"autoload": {
"psr-4": {
"ByteFerry\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ByteFerry\\test\\": "tests"
}
}
}