-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.27 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
{
"name": "oro-flex/message-queue-bundle",
"description": "OroMessageQueueBundle incorporates the OroMessageQueue component into OroPlatform and thereby provides message queue processing capabilities for all application components.",
"homepage": "https://github.com/oroinc/platform/tree/master/src/Oro/Bundle/MessageQueueBundle",
"license": "MIT",
"authors": [
{
"name": "Nikita Makarov",
"email": "[email protected]"
},
{
"name": "Oro, Inc",
"homepage": "https://oroinc.com/"
}
],
"require": {
"php": "~7.4.14 || ~8.0.0",
"oro-flex/message-queue": "5.0.*",
"oro-flex/batch-bundle": "5.0.*",
"doctrine/doctrine-bundle": "^2.5.0",
"doctrine/orm": "^2.9.0",
"symfony/translation": "*"
},
"require-dev": {
},
"conflict": {
"oro/platform": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"symfony": {
"require": "5.4.*"
},
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"autoload": {
"psr-4": {
"Oro\\Bundle\\MessageQueueBundle\\": ""
},
"exclude-from-classmap": ["/Tests/"]
}
}