forked from driftphp/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (49 loc) · 1.25 KB
/
composer.json
File metadata and controls
50 lines (49 loc) · 1.25 KB
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
{
"name": "drift/server",
"description": "ReactPHP based server for DriftPHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
}
],
"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/http-kernel": "0.1.*, >=0.1.3",
"drift/console-bridge": "0.1.*",
"drift/event-loop-utils": "0.1.*",
"seregazhuk/php-watcher": "^0.5.2"
},
"require-dev": {
"phpunit/phpunit": "7.5.17",
"drift/event-bus-bundle": "0.1.*, >=0.1.2",
"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"
]
}