-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
145 lines (145 loc) · 3.93 KB
/
composer.json
File metadata and controls
145 lines (145 loc) · 3.93 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "devitools/serendipity",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf"
],
"description": "The Hyperf missing component",
"autoload": {
"psr-4": {
"Serendipity\\": "src/"
},
"files": [
"src/_/runtime.php"
]
},
"autoload-dev": {
"psr-4": {
"Serendipity\\Test\\": "tests/",
"Serendipity\\Test\\_\\": "tests/_/"
}
},
"require": {
"php": "^8.3",
"ext-ds": "*",
"ext-json": "*",
"ext-mongodb": "*",
"ext-pdo": "*",
"ext-swoole": "*",
"devitools/constructo": "^1.5.12",
"fakerphp/faker": "^1.24",
"google/cloud-logging": "^1.32",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.7",
"hyperf/cache": "~3.1.0",
"hyperf/collection": "^3.1",
"hyperf/command": "^3.1",
"hyperf/config": "~3.1.0",
"hyperf/config-apollo": "~3.1.0",
"hyperf/config-center": "^3.1",
"hyperf/constants": "~3.1.0",
"hyperf/context": "^3.1",
"hyperf/contract": "^3.1",
"hyperf/coordinator": "^3.1",
"hyperf/coroutine": "^3.1",
"hyperf/database": "^3.1",
"hyperf/database-pgsql": "^3.1",
"hyperf/db": "^3.1",
"hyperf/db-connection": "^3.1",
"hyperf/di": "3.1.*",
"hyperf/elasticsearch": "~3.1.0",
"hyperf/engine": "^2.10",
"hyperf/event": "^3.1",
"hyperf/exception-handler": "^3.1",
"hyperf/framework": "3.1.*",
"hyperf/guzzle": "~3.1.0",
"hyperf/http-message": "^3.1",
"hyperf/http-server": "^3.1",
"hyperf/json-rpc": "~3.1.0",
"hyperf/logger": "~3.1.0",
"hyperf/memory": "~3.1.0",
"hyperf/model-cache": "~3.1.0",
"hyperf/process": "~3.1.0",
"hyperf/rpc": "~3.1.0",
"hyperf/rpc-client": "~3.1.0",
"hyperf/rpc-server": "~3.1.0",
"hyperf/service-governance": "~3.1.0",
"hyperf/support": "^3.1",
"hyperf/tracer": "~3.1.0",
"hyperf/validation": "^3.1",
"jawira/case-converter": "^3.5",
"mongodb/mongodb": "^1.19",
"monolog/monolog": "^2.9 || ^3.8",
"mustache/mustache": "^2.14",
"php-ds/php-ds": "^1.5",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0",
"rakibtg/sleekdb": "^2.15",
"sentry/sentry": "^4.11",
"swow/psr7-plus": "^1.1",
"symfony/console": "^7.2"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.1",
"deptrac/deptrac": "^3.0",
"friendsofphp/php-cs-fixer": "^3.0",
"hyperf/devtool": "~3.1.0",
"hyperf/testing": "~3.1.0",
"php-mock/php-mock-phpunit": "^2.12",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^10.5",
"rector/rector": "^2",
"roave/security-advisories": "dev-latest",
"robiningelbrecht/phpunit-pretty-print": "^1.3",
"squizlabs/php_codesniffer": "^3.11",
"swoole/ide-helper": "^5.0",
"vimeo/psalm": "^5.26"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "bin/phpunit.php",
"lint:phpcs": "phpcs --standard=PSR12,phpcs.xml -s src",
"lint:phpstan": "phpstan analyse --memory-limit 512M",
"lint:deptrac": "deptrac analyse --report-uncovered --fail-on-uncovered",
"lint:phpmd": "phpmd src ansi phpmd.xml",
"lint:rector": "rector process --dry-run",
"lint:psalm": "psalm",
"lint": [
"composer lint:phpcs",
"composer lint:phpstan",
"composer lint:deptrac",
"composer lint:phpmd",
"composer lint:rector",
"composer lint:psalm"
],
"ci": [
"composer lint",
"composer test"
],
"fix": [
"rector process",
"php-cs-fixer fix src",
"php-cs-fixer fix bin",
"php-cs-fixer fix config",
"php-cs-fixer fix tests"
]
},
"extra": {
"hyperf": {
"config": "Serendipity\\ConfigProvider"
}
}
}