forked from swoft-cloud/swoft-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
192 lines (192 loc) · 8.22 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{
"name": "swoft/component",
"type": "library",
"keywords": [
"php",
"Swoft",
"Swoole",
"swoft-component"
],
"description": "micro-service framework base on swoole",
"license": "Apache-2.0",
"require": {
"php": ">7.1.0",
"ext-pdo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-sockets": "*",
"doctrine/annotations": "^1.6",
"php-di/phpdoc-reader": "^2.0",
"psr/container": "^1.0 || ^2.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"vlucas/phpdotenv": "^3.4 || ^5.0",
"symfony/yaml": "^4.3",
"toolkit/cli-utils": "^1.0",
"monolog/monolog": "^1.24 || ^2.0",
"nikic/php-parser": "~4.2"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.0",
"swoft/swoole-ide-helper": "dev-master"
},
"replace": {
"swoft/annotation": "self.version",
"swoft/aop": "self.version",
"swoft/bean": "self.version",
"swoft/config": "self.version",
"swoft/console": "self.version",
"swoft/event": "self.version",
"swoft/error": "self.version",
"swoft/framework": "self.version",
"swoft/http-message": "self.version",
"swoft/http-server": "self.version",
"swoft/log": "self.version",
"swoft/server": "self.version",
"swoft/stdlib": "self.version",
"swoft/tcp": "self.version",
"swoft/tcp-server": "self.version",
"swoft/websocket-server": "self.version",
"swoft/connection-pool": "self.version",
"swoft/db": "self.version",
"swoft/rpc": "self.version",
"swoft/rpc-server": "self.version",
"swoft/rpc-client": "self.version",
"swoft/task": "self.version",
"swoft/redis": "self.version",
"swoft/process": "self.version",
"swoft/proxy": "self.version",
"swoft/i18n": "self.version",
"swoft/validator": "self.version",
"swoft/test": "self.version"
},
"autoload": {
"psr-4": {
"Swoft\\": "src/framework/src/",
"Swoft\\Annotation\\": "src/annotation/src/",
"Swoft\\Aop\\": "src/aop/src/",
"Swoft\\Bean\\": "src/bean/src/",
"Swoft\\Config\\": "src/config/src/",
"Swoft\\Console\\": "src/console/src/",
"Swoft\\Event\\": "src/event/src/",
"Swoft\\Error\\": "src/error/src/",
"Swoft\\Http\\Message\\": "src/http-message/src/",
"Swoft\\Http\\Server\\": "src/http-server/src/",
"Swoft\\Log\\": "src/log/src/",
"Swoft\\Server\\": "src/server/src/",
"Swoft\\Stdlib\\": "src/stdlib/src/",
"Swoft\\WebSocket\\Server\\": "src/websocket-server/src/",
"Swoft\\Connection\\Pool\\": "src/connection-pool/src/",
"Swoft\\Db\\": "src/db/src/",
"Swoft\\Rpc\\": "src/rpc/src/",
"Swoft\\Rpc\\Client\\": "src/rpc-client/src/",
"Swoft\\Rpc\\Server\\": "src/rpc-server/src/",
"Swoft\\Tcp\\": "src/tcp/src/",
"Swoft\\Tcp\\Server\\": "src/tcp-server/src/",
"Swoft\\Task\\": "src/task/src/",
"Swoft\\Redis\\": "src/redis/src/",
"Swoft\\Process\\": "src/process/src/",
"Swoft\\Proxy\\": "src/proxy/src/",
"Swoft\\I18n\\": "src/i18n/src",
"Swoft\\Validator\\": "src/validator/src",
"Swoft\\Test\\": "src/test/src/"
},
"files": [
"src/framework/src/Swoft.php",
"src/bean/src/Helper/Functions.php",
"src/console/src/Helper/Functions.php",
"src/stdlib/src/Helper/Functions.php",
"src/framework/src/Helper/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"SwoftTest\\Annotation\\Unit\\": "src/annotation/test/unit/",
"SwoftTest\\Annotation\\Testing\\": "src/annotation/test/testing/",
"SwoftTest\\Aop\\Testing\\": "src/aop/test/testing/",
"SwoftTest\\Aop\\Unit\\": "src/aop/test/unit/",
"SwoftTest\\Stdlib\\Unit\\": "src/stdlib/test/unit/",
"SwoftTest\\Stdlib\\Testing\\": "src/stdlib/test/testing/",
"SwoftTest\\Log\\Unit\\": "src/log/test/unit/",
"SwoftTest\\Log\\Testing\\": "src/log/test/testing/",
"SwoftTest\\Config\\Testing\\": "src/config/test/testing/",
"SwoftTest\\Config\\Unit\\": "src/config/test/unit/",
"SwoftTest\\Auth\\Unit\\": "src/auth/test/unit/",
"SwoftTest\\Bean\\Testing\\": "src/bean/test/testing/",
"SwoftTest\\Bean\\Unit\\": "src/bean/test/unit/",
"SwoftTest\\Cache\\Unit\\": "src/cache/test/unit/",
"SwoftTest\\Console\\Unit\\": "src/console/test/unit/",
"SwoftTest\\Console\\Testing\\": "src/console/test/testing/",
"SwoftTest\\Db\\Unit\\": "src/db/test/unit/",
"SwoftTest\\Db\\Testing\\": "src/db/test/testing/",
"SwoftTest\\Test\\Unit\\": "src/test/test/unit/",
"SwoftTest\\Event\\Unit\\": "src/event/test/unit/",
"SwoftTest\\Event\\Testing\\": "src/event/test/testing/",
"SwoftTest\\Error\\Unit\\": "src/error/test/unit/",
"SwoftTest\\Error\\Testing\\": "src/error/test/testing/",
"SwoftTest\\Unit\\": "src/framework/test/unit/",
"SwoftTest\\Testing\\": "src/framework/test/testing/",
"SwoftTest\\Http\\Server\\Unit\\": "src/http-server/test/unit/",
"SwoftTest\\Http\\Server\\Testing\\": "src/http-server/test/testing/",
"SwoftTest\\Redis\\Unit\\": "src/redis/test/unit/",
"SwoftTest\\Redis\\Testing\\": "src/redis/test/testing/",
"SwoftTest\\Rpc\\Unit\\": "src/rpc/test/unit/",
"SwoftTest\\Rpc\\Client\\Unit\\": "src/rpc-client/test/unit/",
"SwoftTest\\Rpc\\Client\\Testing\\": "src/rpc-client/test/testing/",
"SwoftTest\\Rpc\\Server\\Unit\\": "src/rpc-server/test/unit/",
"SwoftTest\\Rpc\\Server\\Testing\\": "src/rpc-server/test/testing/",
"SwoftTest\\Tcp\\Unit\\": "src/tcp/test/unit/",
"SwoftTest\\Tcp\\Testing\\": "src/tcp/test/testing/",
"SwoftTest\\Tcp\\Server\\Unit\\": "src/tcp-server/test/unit/",
"SwoftTest\\Tcp\\Server\\Testing\\": "src/tcp-server/test/testing/",
"SwoftTest\\Task\\Unit\\": "src/task/test/unit/",
"SwoftTest\\Task\\Testing\\": "src/task/test/testing/",
"SwoftTest\\I18n\\Testing\\": "src/i18n/test/testing",
"SwoftTest\\I18n\\Unit\\": "src/i18n/test/unit",
"SwoftTest\\Validator\\Unit\\": "src/validator/test/unit",
"SwoftTest\\Validator\\Testing\\": "src/validator/test/testing",
"SwoftTest\\Process\\Unit\\": "src/process/test/unit/",
"SwoftTest\\Process\\Testing\\": "src/process/test/testing/",
"SwoftTest\\Proxy\\Unit\\": "src/proxy/test/unit/",
"SwoftTest\\Proxy\\Testing\\": "src/proxy/test/testing/",
"SwoftTest\\Connection\\Pool\\Unit\\": "src/connection-pool/test/unit/",
"SwoftTest\\WebSocket\\Server\\Unit\\": "src/websocket-server/test/unit/",
"SwoftTest\\WebSocket\\Server\\Testing\\": "src/websocket-server/test/testing/",
"SwoftTest\\Component\\Testing\\": "test/testing/",
"SwoftTest\\Component\\Unit\\": "test/unit/"
}
},
"extra": {
"branch-alias": {
}
},
"scripts": {
"component": "php run.php -c phpunit.xml",
"aop": "php run.php -c src/aop/phpunit.xml",
"annotation": "php run.php -c src/annotation/phpunit.xml",
"bean": "php run.php -c src/bean/phpunit.xml",
"swoft-config": "php run.php -c src/config/phpunit.xml",
"connection-pool": "php run.php -c src/connection-pool/phpunit.xml",
"console": "php run.php -c src/console/phpunit.xml",
"event": "php run.php -c src/event/phpunit.xml",
"error": "php run.php -c src/error/phpunit.xml",
"framework": "php run.php -c src/framework/phpunit.xml",
"http-message": "php run.php -c src/http-message/phpunit.xml",
"http-server": "php run.php -c src/http-server/phpunit.xml",
"i18n": "php run.php -c src/i18n/phpunit.xml",
"log": "php run.php -c src/log/phpunit.xml",
"proxy": "php run.php -c src/proxy/phpunit.xml",
"redis": "php run.php -c src/redis/phpunit.xml",
"db": "php run.php -c src/db/phpunit.xml",
"rpc": "php run.php -c src/rpc/phpunit.xml",
"rpc-client": "php run.php -c src/rpc-client/phpunit.xml",
"rpc-server": "php run.php -c src/rpc-server/phpunit.xml",
"stdlib": "php run.php -c src/stdlib/phpunit.xml",
"task": "php run.php -c src/task/phpunit.xml",
"tcp": "php run.php -c src/tcp/phpunit.xml",
"tcp-server": "php run.php -c src/tcp-server/phpunit.xml",
"validator": "php run.php -c src/validator/phpunit.xml",
"websocket-server": "php run.php -c src/websocket-server/phpunit.xml"
}
}