-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.53 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
{
"name": "webmozarts/messaging-bundle",
"description": "Synchronous and asynchronous messaging with a rich configuration API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Bernhard Schussek",
"email": "bernhard.schussek@webmozarts.com"
}
],
"autoload": {
"psr-4": {
"Webmozarts\\MessagingBundle\\": ""
}
},
"require": {
"php": ">=7.1.0",
"symfony/dependency-injection": "^3.2",
"symfony/http-kernel": "^3.2",
"symfony/filesystem": "^3.2",
"symfony/config": "^3.2",
"symfony/serializer": "^3.2",
"symfony/console": "^3.2",
"symfony/framework-bundle": "^3.2",
"symfony/security": "^3.2",
"symfony/expression-language": "^3.2",
"doctrine/annotations": "^1.6",
"simple-bus/asynchronous": "^3.0",
"simple-bus/message-bus": "^3.0",
"nikic/iter": "^1.5",
"webmozart/assert": "^1.3",
"psr/log": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"php-amqplib/rabbitmq-bundle": "^1.12",
"simple-bus/doctrine-orm-bridge": "^5.0",
"sentry/sentry": "^1.8"
},
"suggest": {
"php-amqplib/rabbitmq-bundle": "For using RabbitMQ as transport",
"simple-bus/doctrine-orm-bridge": "For automatically starting and committing Doctrine transactions and collecting events from Doctrine entities",
"sentry/sentry": "For error logging to Sentry"
}
}