-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (42 loc) · 1.06 KB
/
composer.json
File metadata and controls
48 lines (42 loc) · 1.06 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
{
"name": "drift/event-bus-bundle",
"description": "Event Bus for DriftPHP, a framework on top of Symfony and ReactPHP components",
"homepage": "https://github.com/driftphp/event-bus-bundle",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "yuhu@mmoreram.com"
}
],
"require": {
"php": "^7.4 | ^8.0",
"symfony/console": "^5.0.0",
"symfony/dependency-injection": "^5.0.0",
"symfony/proxy-manager-bridge": "^5.0.0",
"mmoreram/base-bundle": "^2.3",
"drift/http-kernel": "0.1.*, >=0.1.7",
"drift/console-bridge": "0.1.*",
"drift/event-loop-utils": "0.1.*",
"clue/block-react": "^1.3"
},
"require-dev": {
"drift/amqp-bundle": "0.1.*, >=0.1.2",
"phpunit/phpunit": "^9",
"symfony/process": "^5.0.0"
},
"suggest": {
"drift/amqp-bundle": "Install this bundle to use AMQP as a queue system"
},
"autoload": {
"psr-4": {
"Drift\\EventBus\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Drift\\EventBus\\Tests\\": "Tests/"
}
}
}