-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.05 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
{
"name": "jtar/hyperf-user-node",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf"
],
"description": "Utils for Hyperf.",
"autoload": {
"psr-4": {
"Jtar\\UserNode\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "tests"
}
},
"require": {
"php": ">=8.1",
"cvoid/easytree": "^2.0",
"hyperf/command": "^3.0",
"hyperf/config": "^3.0",
"hyperf/context": "^3.0",
"hyperf/db-connection": "^3.0",
"hyperf/di": "^3.0",
"psr/container": "^1.0|^2.0",
"psr/event-dispatcher": "^1.0"
},
"suggest": {
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"scripts": {
"analyse": "phpstan analyse --memory-limit 300M -l 5 ./src",
"cs-fix": "php-cs-fixer fix $1"
},
"extra": {
"hyperf": {
"config": "Jtar\\UserNode\\ConfigProvider"
}
}
}