forked from hyperf/grpc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.22 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": "hyperf/grpc-client",
"description": "A GRPC Client for Hyperf.",
"license": "MIT",
"keywords": [
"php",
"swoole",
"hyperf",
"grpc",
"grpc-client"
],
"homepage": "https://hyperf.io",
"support": {
"docs": "https://hyperf.wiki",
"issues": "https://github.com/hyperf/hyperf/issues",
"pull-request": "https://github.com/hyperf/hyperf/pulls",
"source": "https://github.com/hyperf/hyperf"
},
"require": {
"php": ">=7.2",
"hyperf/grpc": "~2.2.0",
"hyperf/utils": "~2.2.0",
"jean85/pretty-package-versions": "^1.2|^2.0"
},
"autoload": {
"psr-4": {
"Hyperf\\GrpcClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\GrpcClient\\": "tests/",
"GPBMetadata\\": "tests/GPBMetadata",
"Grpc\\": "tests/Grpc",
"Routeguide\\": "tests/Routeguide"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
},
"hyperf": {
"config": "Hyperf\\GrpcClient\\ConfigProvider"
}
}
}