-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
56 lines (55 loc) · 1.4 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
{
"name": "drift/server",
"description": "ReactPHP based server for DriftPHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-pcntl": "*",
"symfony/http-kernel": "^5.0",
"symfony/console": "^5.0",
"symfony/finder": "^4.4 || ^5.0",
"symfony/yaml": "^4.4 || ^5.0",
"react/http": "^1.0",
"react/event-loop": "^1.0",
"react/socket": "^1.0",
"react/promise": "^2.7",
"clue/zlib-react": "^0.2.2",
"drift/console-bridge": "^0.1.2",
"drift/event-loop-utils": "^0.1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/framework-bundle": "^5.0",
"symfony/process": "^5.0",
"symfony/config": "^5.0",
"drift/http-kernel": "0.1.*, >=0.1.15",
"laminas/laminas-diactoros": "^2",
"ext-fileinfo": "*",
"ext-curl": "*"
},
"suggest": {
"react/filesystem": "*",
"drift/event-bus-bundle": "*",
"seregazhuk/php-watcher": "*"
},
"autoload": {
"psr-4": {
"Drift\\Server\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Drift\\Server\\Tests\\": "tests"
}
},
"bin": [
"bin/server"
]
}