-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.33 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.33 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": "crcms/microservice-framework",
"description": "The CrCms Microservice Framework.",
"keywords": [
"microservice",
"framework",
"swoole",
"rpc",
"crcms",
"php"
],
"homepage": "http://blog.crcms.cn",
"support": {
"issues": "https://github.com/crcms/microservice-framework/issues",
"source": "https://github.com/crcms/microservice-framework"
},
"authors": [
{
"name": "simon",
"email": "simon@crcms.cn"
}
],
"license": "MIT",
"type": "framework",
"require": {
"php": "^7.2.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"crcms/microservice-bridging": "dev-master",
"crcms/microservice-dispatching": "dev-master",
"crcms/microservice-server": "dev-master",
"crcms/foundation": "^0.0",
"crcms/logger": "^0.1.0",
"dragonmantank/cron-expression": "^2.0",
"illuminate/bus": "5.8.*",
"illuminate/cache": "5.8.*",
"illuminate/config": "5.8.*",
"illuminate/console": "5.8.*",
"illuminate/container": "5.8.*",
"illuminate/contracts": "5.8.*",
"illuminate/database": "5.8.*",
"illuminate/encryption": "5.8.*",
"illuminate/events": "5.8.*",
"illuminate/filesystem": "5.8.*",
"illuminate/hashing": "5.8.*",
"illuminate/http": "5.8.*",
"illuminate/log": "5.8.*",
"illuminate/pagination": "5.8.*",
"illuminate/pipeline": "5.8.*",
"illuminate/queue": "5.8.*",
"illuminate/redis": "5.8.*",
"illuminate/support": "5.8.*",
"illuminate/translation": "5.8.*",
"illuminate/validation": "5.8.*",
"league/flysystem": "^1.0.8",
"symfony/var-dumper": "^4.2",
"vlucas/phpdotenv": "^3.3"
},
"require-dev": {
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.5",
"codedungeon/phpunit-result-printer": "^0.26.0",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/php-code-coverage": "^6.0"
},
"autoload": {
"classmap": [
],
"psr-4": {
"CrCms\\Microservice\\": "src/",
"Illuminate\\Foundation\\": "src/Illuminate/Foundation"
},
"files": [
"src/Helpers/helpers.php"
]
},
"autoload-dev": {
"files": [
"tests/bootstrap.php"
],
"psr-4": {
"CrCms\\Microservice\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}