forked from driftphp/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (47 loc) · 1.16 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
{
"name": "drift/server",
"description": "ReactPHP based server for DriftPHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"ext-pcntl": "*",
"symfony/http-kernel": "^5.0",
"symfony/console": "^5.0",
"symfony/finder": "^4.4 || ^5.0",
"react/http": "^0.8",
"react/event-loop": "^1.0",
"react/socket": "^1.0",
"react/promise": "^2.7",
"react/filesystem": "^0.1",
"drift/react-functions": "0.1.*",
"drift/http-kernel": "0.1.*, >=0.1.3",
"drift/console-bridge": "0.1.*",
"seregazhuk/php-watcher": "^0.5.2"
},
"require-dev": {
"symfony/framework-bundle": "^5.0",
"symfony/process": "^5.0",
"symfony/config": "^5.0",
"ext-fileinfo": "*"
},
"autoload": {
"psr-4": {
"Drift\\Server\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Drift\\Server\\Tests\\": "tests"
}
},
"bin": [
"bin/server"
]
}