forked from swoft-cloud/swoft
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
70 lines (70 loc) · 1.55 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
{
"name": "swoft/swoft",
"type": "project",
"keywords": [
"php",
"swoole",
"swoft"
],
"description": "Modern High performance AOP and Coroutine PHP Framework, base on Swoole",
"license": "Apache-2.0",
"require": {
"php": ">=7.1",
"ext-pdo": "*",
"ext-json": "*",
"swoft/annotation": "^2.0",
"swoft/bean": "^2.0",
"swoft/event": "^2.0",
"swoft/aop": "^2.0",
"swoft/config": "^2.0",
"swoft/stdlib": "^2.0",
"swoft/framework": "^2.0",
"swoft/http-message": "^2.0",
"swoft/server": "^2.0",
"swoft/tcp-server": "^2.0",
"swoft/http-server": "^2.0",
"swoft/websocket-server": "^2.0",
"swoft/log": "^2.0",
"swoft/db": "^2.0",
"swoft/connection-pool": "^2.0",
"swoft/test": "^2.0",
"swoft/console": "^2.0",
"swoft/rpc": "^2.0",
"swoft/rpc-server": "^2.0",
"swoft/rpc-client": "^2.0",
"swoft/task": "^2.0",
"swoft/redis": "^2.0",
"swoft/proxy": "^2.0",
"swoft/error": "^2.0",
"swoft/component": "dev-master as 2.0"
},
"require-dev": {
"swoft/swoole-ide-helper": "dev-master",
"phpunit/phpunit": "^7.5",
"friendsofphp/php-cs-fixer": "^2.10"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Helper/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
}
},
"scripts": {
},
"repositories": [
{
"type": "git",
"url": "[email protected]:swoft-cloud/swoft-component.git"
},
{
"type": "composer",
"url": "https://packagist.laravel-china.org"
}
]
}