-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.3 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
{
"name": "wellkit/workerman-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "symfony workerman bundle",
"keywords": ["workerman", "symfony", "runtime", "php-runtime"],
"homepage": "https://github.com/niqingyang/workerman-runtime",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "niqingyang",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0.2",
"ext-pcntl": "*",
"ext-posix": "*",
"ext-zend-opcache": "*",
"league/mime-type-detection": "^1.11",
"nyholm/psr7": "^1.5",
"symfony/config": "^6.1",
"symfony/dependency-injection": "^6.1",
"symfony/finder": "^6.1",
"symfony/http-kernel": "^6.1",
"symfony/psr-http-message-bridge": "^2.1",
"symfony/runtime": "^6.0",
"symfony/yaml": "^6.1",
"workerman/psr7": "^1.4",
"workerman/workerman": "^4.0"
},
"autoload": {
"psr-4": {
"WellKit\\WorkermanBundle\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.0-dev"
}
}
}