-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (46 loc) · 1.46 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/command-bus-bundle",
"description": "Command Bus for DriftPHP, a framework on top of Symfony and ReactPHP components",
"homepage": "https://github.com/driftphp/command-bus-bundle",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marc Morera",
"email": "[email protected]"
}
],
"require": {
"php": "^8",
"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.5",
"drift/console-bridge": "0.1.*",
"drift/event-loop-utils": "0.1.*",
"clue/block-react": "^1.3"
},
"require-dev": {
"drift/redis-bundle": "0.1.*, >=0.1.4",
"drift/amqp-bundle": "0.1.*, >=0.1.2",
"drift/postgresql-bundle": "0.1.*, >=0.1.2",
"symfony/process": "^5.0.0",
"phpunit/phpunit": "^9"
},
"suggest": {
"drift/redis-bundle": "Install this bundle to use Redis as a queue system",
"drift/amqp-bundle": "Install this bundle to use AMQP as a queue system",
"drift/postgresql-bundle": "Install this bundle to use PostgreSQL as a queue system"
},
"autoload": {
"psr-4": {
"Drift\\CommandBus\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Drift\\CommandBus\\Tests\\": "Tests/"
}
}
}