-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
69 lines (69 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "simple-bus/rabbitmq-bundle-bridge",
"type": "symfony-bundle",
"description": "Use OldSoundRabbitMQBundle with SimpleBus/AsynchronousBundle",
"keywords": [
"RabbitMQ",
"messages",
"message bus",
"event bus",
"command bus"
],
"homepage": "http://github.com/SimpleBus/RabbitMQBundleBridge",
"license": "MIT",
"authors": [
{
"name": "Cliff Odijk",
"email": "[email protected]"
},
{
"name": "Ruud Kamphuis",
"homepage": "https://github.com/ruudk"
},
{
"name": "Matthias Noback",
"email": "[email protected]",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^8.0",
"php-amqplib/php-amqplib": "^3.1",
"php-amqplib/rabbitmq-bundle": "^2.11.0",
"simple-bus/asynchronous": "^6.0",
"simple-bus/asynchronous-bundle": "^6.0",
"simple-bus/message-bus": "^6.0",
"symfony/monolog-bundle": "^3.4"
},
"conflict": {
"jms/metadata": "<2.5.2",
"monolog/monolog": "<1.26.1 || >=2.0,<2.3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"matthiasnoback/phpunit-asynchronicity": "^2.4",
"phpunit/phpunit": "^9.5.5",
"simple-bus/jms-serializer-bundle-bridge": "^6.0",
"symfony/console": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^6.0",
"symfony/process": "^5.4 || ^6.0",
"symfony/stopwatch": "^5.4 || ^6.0",
"symfony/translation": "^5.4 || ^6.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"SimpleBus\\RabbitMQBundleBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleBus\\RabbitMQBundleBridge\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}