-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.2 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
50
51
{
"name": "s1lver/yii2-etcd",
"description": "Yii2 etcd component",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.4.5",
"grpc/grpc": "^1.42.0",
"google/protobuf": "^v3.11.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"yiisoft/yii2": "^2.0.45"
},
"suggest": {
"ext-grpc": "Needed for the grpc protocol to work"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"S1lver\\Etcd\\": "src",
"Etcd\\": "src/RPC/Etcd",
"GPBMetadata\\Proto\\": [
"src/RPC/GPBMetadata/Proto"
]
}
},
"autoload-dev": {
"psr-4": {
"S1lver\\Etcd\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}