-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (42 loc) · 1.66 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
{
"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": "iam@chebba.org",
"homepage": "http://github.com/chEbba"
}
],
"autoload": {
"psr-0": { "EventBand\\Bundle": "" }
},
"target-dir": "EventBand/Bundle",
"require": {
"php": ">=5.4.1",
"symfony/framework-bundle": "2.*, >=2.5",
"event-band/band-framework": "dev-master",
"event-band/symfony-adapter": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"event-band/symfony-adapter": "dev-master",
"che/console-signals": "dev-master",
"event-band/amqplib-transport": "dev-master",
"event-band/jms-serializer": "dev-master",
"jms/serializer-bundle": "0.12.*@dev",
"jms/aop-bundle": "1.*"
},
"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"
}
}