-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.29 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
{
"name": "imiphp/imi-etcd",
"type": "library",
"license": "MulanPSL-2.0",
"description": "imi 框架 etcd 组件。imi etcd component.",
"require": {
"imiphp/imi-config-center": "2.1.x-dev",
"yurunsoft/yurun-http": "^4.3",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~3.4.0",
"phpstan/phpstan": "~1.8.0",
"phpunit/phpunit": ">=9",
"rector/rector": "^0.12.10",
"imiphp/imi": "2.1.x-dev",
"imiphp/imi-swoole": "2.1.x-dev",
"imiphp/imi-workerman": "2.1.x-dev",
"imiphp/imi-fpm": "2.1.x-dev",
"swoole/ide-helper": "^4.8"
},
"autoload": {
"psr-4": {
"Imi\\Etcd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"app\\": "example/",
"Imi\\Etcd\\Test\\": "tests/"
}
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
},
"imi-config-center": {
"type": "vcs",
"url": "https://github.com/imiphp/imi-config-center"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit -c ./phpunit.xml"
},
"minimum-stability": "dev",
"prefer-stable": true
}