-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.49 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.49 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
{
"name": "workbunny/webman-push-server",
"type": "library",
"license": "MIT",
"description": "Webman plugin workbunny/webman-push-server",
"authors": [
{
"name": "chaz6chez",
"email": "chaz6chez1993@outlook.com",
"homepage": "http://chaz6chez.cn"
}
],
"support": {
"issues": "https://github.com/workbunny/webman-push-server/issues",
"source": "https://github.com/workbunny/webman-push-server"
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"webman/console": "^1.0 | ^2.0",
"guzzlehttp/guzzle": "^7.0 | ^8.0",
"monolog/monolog": "^2.0 | ^3.0"
},
"require-dev": {
"workerman/webman-framework": "^1.5 | ^2.0",
"webman/redis": "^1.0 | ^2.0",
"symfony/var-dumper": "^6.0 | ^7.0",
"phpunit/phpunit": "^9.6 | ^10.0",
"phpstan/phpstan": "^1.11",
"friendsofphp/php-cs-fixer": "^3.58",
"workerman/redis": "^2.0",
"workbunny/webman-shared-cache": "^0.6"
},
"suggest": {
"ext-uuid": "For unique socket id. ",
"webman/redis": "For redis storage. ",
"workerman/redis": "For redis channel. ",
"workbunny/webman-shared-cache": "For shared storage / channel. "
},
"autoload": {
"psr-4": {
"Workbunny\\WebmanPushServer\\": "src"
},
"files": [
"./src/helpers.php",
"./src/constants.php"
]
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"cs-fix": "./vendor/bin/php-cs-fixer fix",
"php-stan": "./vendor/bin/phpstan analyse src"
}
}