-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 921 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 921 Bytes
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
{
"name": "mix/micro-etcd",
"description": "Microservice registry-center and config-center using Etcd, developed based on Swoole",
"type": "library",
"keywords": [
"mix",
"swoole",
"etcd",
"registry-center",
"config-center"
],
"homepage": "https://openmix.org/",
"license": "Apache-2.0",
"authors": [
{
"name": "liu,jian",
"email": "coder.keda@gmail.com"
}
],
"require": {
"php": ">=7.2.0",
"ext-swoole": ">=4.4.4",
"start-point/etcd-php": "^1.1",
"psr/event-dispatcher": "^1.0",
"mix/micro-config": "~2.2.0",
"mix/micro-register": "~2.2.0",
"mix/micro-route": "~2.2.0",
"mix/micro-server": "~2.2.0",
"mix/runtime": "~2.2.0",
"mix/guzzle": "~2.2.0",
"hassankhan/config": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0.0"
},
"autoload": {
"psr-4": {
"Mix\\Micro\\Etcd\\": "src/"
}
}
}