-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1007 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1007 Bytes
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
{
"name": "workbunny/webman-shared-cache",
"type": "library",
"license": "MIT",
"description": "Webman plugin workbunny/webman-shared-cache",
"authors": [
{
"name": "chaz6chez",
"email": "chaz6chez1993@outlook.com",
"homepage": "https://chaz6chez.cn"
}
],
"support": {
"issues": "https://github.com/workbunny/webman-shared-cache/issues",
"source": "https://github.com/workbunny/webman-shared-cache"
},
"require": {
"php": ">=7.4",
"ext-apcu": "*"
},
"require-dev": {
"workerman/webman-framework": "^1.0 | ^2.0",
"symfony/var-dumper": "^5.0 | ^6.0 | ^7.0",
"phpunit/phpunit": "^8.0 | ^9.0",
"webman/console": "^1.0 | ^2.0"
},
"suggest": {
"webman/console": "Webman-CLI support. ",
"ext-posix": "Channel signal support. "
},
"autoload": {
"psr-4": {
"Workbunny\\WebmanSharedCache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Workbunny\\WebmanSharedCache\\Tests\\": "tests"
}
}
}