-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 1.15 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
{
"name": "manyou/workerman-symfony-runtime",
"type": "library",
"description": "Run Symfony applications with Workerman",
"keywords": ["workerman", "symfony", "runtime", "php-runtime"],
"homepage": "https://github.com/manyou-io/workerman-symfony-runtime",
"license": "MIT",
"authors": [
{
"name": "Brent, Bohan Yang",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"chubbyphp/chubbyphp-workerman-request-handler": "^2.0",
"symfony/psr-http-message-bridge": "^2.3|^7.0",
"psr/http-message": "^1.0|^2.0",
"symfony/runtime": "^7.0",
"workerman/workerman": "^4.0",
"symfony/http-kernel": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/dependency-injection": "^7.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"nyholm/psr7": "^1.6.1"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-main": "0.1-dev"
}
},
"autoload": {
"psr-4": {
"Manyou\\WorkermanSymfonyRuntime\\": ""
}
}
}