-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.37 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
{
"name": "gioco-plus/prism-plus",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Xuan Yang",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"psr/container": "^1.0|^2.0",
"gioco-plus/transaction-contract": "~1.3.0",
"gioco-plus/record-contract": "dev-master",
"gioco-plus/prism-const": "dev-master",
"gioco-plus/hyperf-cors": "dev-master",
"gioco-plus/hyperf-jwt-auth": "dev-master",
"gioco-plus/hyperf-mongodb": "dev-master",
"hyperf/guzzle" : "^2.0",
"hyperf/validation": "^2.0",
"hyperf/redis": "^2.0.0",
"hyperf/json-rpc": "^2.0.0",
"hyperf/rpc": "^2.0.0",
"hyperf/rpc-client": "^2.0.0",
"hyperf/rpc-server": "^2.0.0"
},
"require-dev": {
"swoole/ide-helper": "^4.5",
"friendsofphp/php-cs-fixer": "^2.14",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^0.12",
"hyperf/devtool": "^2.0.0",
"hyperf/testing": "^2.0.0",
"hyperf/watcher": "^2.0"
},
"autoload": {
"files": [
"./src/Functions.php"
],
"psr-4": {
"GiocoPlus\\PrismPlus\\": "src/"
}
},
"extra": {
"hyperf": {
"config": "GiocoPlus\\PrismPlus\\ConfigProvider"
}
}
}