-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
49 lines (49 loc) · 1.13 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
{
"name": "qiutuleng/hyperf-dump-server",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tuleng QIU",
"email": "qiutuleng@gmail.com",
"homepage": "https://github.com/qiutuleng"
}
],
"homepage": "https://github.com/qiutuleng/hyperf-dump-server",
"keywords": [
"php",
"hyperf",
"dump-server"
],
"description": "Bring Symfony's Var-Dump Server to Hyperf",
"autoload": {
"psr-4": {
"Qiutuleng\\HyperfDumpServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "tests"
}
},
"require": {
"php": ">=8.1",
"symfony/var-dumper": "^5.0",
"hyperf/command": "^3.1",
"hyperf/framework": "^3.1"
},
"require-dev": {
"hyperf/testing": "^3.1"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "co-phpunit -c phpunit.xml --colors=always"
},
"extra": {
"hyperf": {
"config": "Qiutuleng\\HyperfDumpServer\\ConfigProvider"
}
}
}