This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.91 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
51
52
53
54
55
56
57
58
59
{
"name": "guandeng/hyperf-telescope",
"description": "An elegant debug assistant for the hyperf framework.",
"keywords": [
"swoole",
"hyperf",
"debugging"
],
"license": "MIT",
"require": {
"php": ">=8.0",
"hyperf/framework": "~3.0.0",
"hyperf/view": "~3.0.0",
"hyperf/support": "~3.0.0",
"hyperf/event": "~3.0.0",
"hyperf/view-engine": "~3.0.0",
"ramsey/uuid": "^4.7",
"nesbot/carbon": "^2.71",
"hyperf/command": "~3.0.0",
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"hyperf/http-server": "~3.0.42",
"swow/psr7-plus": "^1.1",
"huangdijia/php-coding-standard": "^1.2|^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"hyperf/db-connection": "~3.0.0",
"hyperf/redis": "~3.0.0",
"monolog/monolog": "^2.0",
"hyperf/grpc-client": "~3.0.0",
"swoole/ide-helper": "dev-master"
},
"autoload": {
"psr-4": {
"Guandeng\\Telescope\\": "src/"
}
},
"suggest": {
"ext-swoole": "Required to use swoole engine.",
"hyperf/dispatcher": "Required to use BootApplication event.",
"hyperf/command": "Required to use Command annotation.",
"hyperf/database": "Required to use Database annotation.",
"hyperf/db-connection": "Required to use db-connection annotation.",
"hyperf/event": "Required to use Event annotation.",
"hyperf/http-message": "Required to use http-message annotation."
},
"extra": {
"hyperf": {
"config": "Guandeng\\Telescope\\ConfigProvider"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyse": "@php vendor/bin/phpstan analyse --memory-limit 1G -l 0",
"cs-fix": "@php vendor/bin/php-cs-fixer fix $1"
}
}