-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.62 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.62 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "thesis/grpc",
"description": "Non-blocking implementation of gRPC.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "kafkiansky",
"email": "vadimzanfir@gmail.com"
},
{
"name": "Valentin Udaltsov",
"email": "udaltsov.valentin@gmail.com"
},
{
"name": "Thesis Team",
"homepage": "https://github.com/orgs/thesis-php/people"
}
],
"require": {
"php": "^8.4",
"ext-ctype": "*",
"amphp/amp": "^3.1",
"amphp/byte-stream": "^2.1",
"amphp/cache": "^2.0",
"amphp/dns": "^2.4",
"amphp/http": "^2.1",
"amphp/http-client": "^5.3",
"amphp/http-server": "^3.4",
"amphp/pipeline": "^1.2",
"amphp/socket": "^2.3",
"amphp/sync": "^2.3",
"league/uri": "^7.8",
"psr/log": "^3.0",
"revolt/event-loop": "1.0.8",
"thesis/endian": "^0.3.3",
"thesis/googleapis-rpc-types": "^0.1.6",
"thesis/package-version": "^0.1.2",
"thesis/protobuf": "^0.1.8",
"thesis/protobuf-known-types": "^0.1.5"
},
"require-dev": {
"ext-bcmath": "*",
"phpunit/phpunit": "^12.4",
"symfony/var-dumper": "^8.0",
"thesis/grpc-client": "*@dev",
"thesis/grpc-protocol": "*@dev",
"thesis/grpc-server": "*@dev",
"thesis/protoregistry": "^0.1.2"
},
"repositories": [
{
"type": "path",
"url": "packages/*",
"options": {
"symlink": true
}
}
],
"autoload": {
"psr-4": {
"Thesis\\Grpc\\": [
"packages/grpc/src/",
"packages/client/src/",
"packages/server/src/"
]
},
"files": [
"packages/grpc/src/autoload.files.php"
]
},
"autoload-dev": {
"psr-4": {
"Chat\\Api\\V1\\": "tests/genproto/Chat/Api/V1/",
"Echos\\Api\\V1\\": "tests/genproto/Echos/Api/V1/",
"File\\Api\\V1\\": "tests/genproto/File/Api/V1/",
"Thesis\\Grpc\\": "tests/",
"Topic\\Api\\V1\\": "tests/genproto/Topic/Api/V1/"
},
"files": [
"tests/genproto/Echos/Api/V1/autoload.metadata.php",
"tests/genproto/File/Api/V1/autoload.metadata.php",
"tests/genproto/Topic/Api/V1/autoload.metadata.php",
"tests/genproto/Chat/Api/V1/autoload.metadata.php"
]
},
"config": {
"lock": false,
"sort-packages": true
}
}