-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (50 loc) · 1.93 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
{
"name": "event-band/symfony-bundle",
"description": "Symfony Bundle for EventBand",
"keywords": ["event", "dispatcher", "queue", "async", "asynchronous", "message", "bundle", "amqp"],
"homepage": "http://github.com/chEbba/EventBandSymfonyBundle",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kirill chEbba Chebunin",
"email": "[email protected]",
"homepage": "http://github.com/chEbba"
},
{
"name": "Vasil coylOne Kulakov",
"email": "[email protected]",
"homepage": "http://github.com/coyl"
}
],
"autoload": {
"psr-4": {
"EventBand\\Bundle\\": "Bundle",
"EventBand\\Adapter\\Symfony\\": "Adapter"
}
},
"require": {
"php": ">=7.0",
"event-band/band-framework": "~2.0 >=2.2.2",
"symfony/framework-bundle": "~2.7 | ~3.2 | ~4.0",
"symfony/event-dispatcher": "~2.1 | ~3.0 | ~4.0",
"symfony/console": "~2.1 | ~3.0 | ~4.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0.0",
"event-band/amqplib-transport": "dev-master",
"event-band/jms-serializer": "dev-master",
"jms/serializer-bundle": "2.3.*@dev",
"jms/aop-bundle": "1.*",
"symfony/console": "2.3.0 | ~3.0 | ~4.0",
"symfony/process": "2.3.* | ~3.0 | ~4.0"
},
"suggest": {
"event-band/amqplib-transport": "Use amqp transport with amqp-lib",
"event-band/pecl-amqp-transport": "Use amqp transport with pecl amqp extension",
"event-band/jms-serializer": "Serialize events with jms (jms/serializer-bundle is required)",
"jms/serializer-bundle": "Required to use with event-band/jms-serializer",
"jmikola/wildcard-event-dispatcher-bundle": "Simple publisher event configuration with wildcards",
"jms/aop-bundle": "Required for amqp publication data collect"
}
}