-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 904 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 904 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
42
43
44
{
"name": "phpmicroservice/pms-frame",
"type": "library",
"keywords": [
"swoole",
"phalcon",
"microservice",
"websockect",
"tcp"
],
"homepage": "http://pms.2xso.com",
"description": "一个采用Swoole做底层,采用Phalcon作为框架类库的微服务框架",
"license": "MIT",
"authors": [
{
"name": "Dongasai",
"email": "1514582970@qq.com",
"homepage": "http://www.2xso.com",
"role": "Creator"
}
],
"require": {
"php": ">=7.2",
"ext-swoole": "4.*",
"ext-phalcon": "*",
"phpmicroservice/funch": "0.*"
},
"require-dev": {
"eaglewu/swoole-ide-helper": "dev-master@dev",
"phpmicroservice/phalcon-ide-stubs": "master@dev"
},
"suggest": {
"ext-memcached": "*",
"ext-pdo": "*"
},
"autoload": {
"psr-4": {
"pms\\": "src/"
},
"files": [
"src/function.php"
]
}
}