-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
63 lines (63 loc) · 1.78 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
{
"name": "workbunny/webman-coroutine",
"type": "library",
"license": "Apache-2.0",
"description": "Webman Coroutine Infrastructure Suite Compatible with Workerman. ",
"authors": [
{
"name": "chaz6chez",
"email": "[email protected]",
"homepage": "https://chaz6chez.cn"
}
],
"support": {
"issues": "https://github.com/workbunny/webman-coroutine/issues",
"source": "https://github.com/workbunny/webman-coroutine"
},
"require": {
"php": "^8.0",
"workerman/workerman": "^4.0|^5.0"
},
"require-dev": {
"workerman/webman-framework": "^1.0",
"webman/console": "^1.0",
"phpunit/phpunit": "^9.6",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"symfony/var-dumper": "^6.0",
"swoole/ide-helper": "^5.1",
"swow/swow": "^1.5"
},
"autoload": {
"psr-4": {
"Workbunny\\WebmanCoroutine\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Workbunny\\Tests\\": "tests"
}
},
"suggest": {
"swow/swow": "For supporting Swow handler. ",
"revolt/event-loop": "For supporting Revolt/PHP-fiber handler. ",
"cloudtay/ripple-driver": "For supporting Ripple handler. ",
"ext-swoole": "For supporting Swoole handler. "
},
"scripts": {
"cs-fix": "./vendor/bin/php-cs-fixer fix",
"php-stan": "./vendor/bin/phpstan analyse --memory-limit=512MB",
"unit-test": "./vendor/bin/phpunit --coverage-html coverage",
"doc-install": "@php -r \"shell_exec('curl -sSLf -o /usr/local/bin/phpDocumentor https://phpdoc.org/phpDocumentor.phar && chmod +x /usr/local/bin/phpDocumentor');\""
},
"config": {
"allow-plugins": {
"symfony/flex": false
},
"process-timeout": 3000
}
}