-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 816 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 816 Bytes
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
{
"name": "onliner/command-bus",
"type": "library",
"description": "PHP easy to use command bus.",
"keywords": ["command-bus", "command", "service-bus"],
"license": "MIT",
"require": {
"php": "^8.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"php-amqplib/php-amqplib": "^2.12 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.0",
"phpstan/phpstan": "^1.10",
"sentry/sentry": "^3.0 || ^4.0"
},
"suggest": {
"sentry/sentry": "Required to use the sentry middleware."
},
"autoload": {
"psr-4": {
"Onliner\\CommandBus\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Onliner\\CommandBus\\Tests\\": "tests"
}
}
}