-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 937 Bytes
/
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
{
"name": "onliner/laravel-command-bus",
"type": "library",
"description": "Laravel integration for command bus.",
"keywords": ["command-bus", "command", "service-bus", "laravel"],
"license": "MIT",
"require": {
"php": "^8.0",
"ext-ctype": "*",
"ext-posix": "*",
"ext-pcntl": "*",
"illuminate/support": ">=6.0",
"illuminate/console": ">=6.0",
"illuminate/redis": ">=6.0",
"onliner/command-bus": "^1.1"
},
"require-dev": {
"predis/predis": "^2.0.2"
},
"suggest": {
"predis/predis": "Required to use the redis reconnect middleware."
},
"autoload": {
"psr-4": {
"Onliner\\Laravel\\CommandBus\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Onliner\\Laravel\\CommandBus\\Providers\\CommandBusProvider"
]
}
}
}