-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 2.46 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
{
"name": "swow-cloud/ws-server",
"description": "swow websocket-server demo",
"license": "proprietary",
"support": {
"issues": "https://github.com/swow-cloud/websokcet-server/issues"
},
"authors": [
{
"name": "heping",
"email": "84705412@qq.com"
}
],
"autoload": {
"psr-4": {
"SwowCloud\\WsServer\\": "src"
},
"files": [
"src/Kernel/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"SwowCloud\\WsServer\\": "tests"
}
},
"require": {
"php": ">=8.1",
"ext-bcmath": "*",
"ext-iconv": "*",
"ext-pdo": "*",
"ext-redis": ">=5.3",
"ext-sockets": "*",
"chevere/xr": "^0.2.2",
"guzzlehttp/guzzle": "^7.3",
"hyperf/contract": "3.0.*",
"hyperf/di": "3.0.*",
"hyperf/engine-swow": "dev-master",
"hyperf/pool": "3.0.*",
"hyperf/utils": "3.0.*",
"league/climate": "^3.8",
"marwanalsoltany/blend": "^1.0",
"monolog/monolog": "^2.3",
"nesbot/carbon": "^2.58",
"nette/utils": "^3.2",
"nikic/fast-route": "^1.3",
"swow-cloud/contract": "3.0.x-dev",
"swow-cloud/rate-limit": "dev-master",
"swow-cloud/redis": "dev-master",
"swow-cloud/redis-lock": "3.0.x-dev",
"swow-cloud/redis-subscriber": "3.0.x-dev",
"swow-cloud/sockets": "^1.1",
"swow-cloud/websocket": "3.0.x-dev",
"swow/swow": "^0.2",
"symfony/config": "^5.3",
"symfony/console": "^5.3",
"symfony/serializer": "^5.3",
"symfony/serializer-pack": "^1.0",
"symfony/workflow": "^5.3",
"symfony/yaml": "^5.3",
"vlucas/phpdotenv": "^5.3",
"web-token/jwt-encryption": "^2.2",
"web-token/jwt-signature": "^2.2",
"web-token/jwt-signature-algorithm-hmac": "^2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.2",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"steevanb/php-backtrace": "^2.1",
"symfony/var-dumper": "^5.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"repositories": [
],
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"test": "phpunit --prepend tests/bootstrap.php -c phpunit.xml --colors=always",
"cs-fix": [ "@php vendor/bin/php-cs-fixer fix" ],
"analyse": "phpstan analyse --memory-limit 300M -l 0 -c phpstan.neon ./app ./config"
}
}