-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.54 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
{
"name": "nilportugues/eventbus-queue",
"description": "Event Bus Queue library. Allows implementing asynchronous Event Bus.",
"type": "library",
"homepage": "http://nilportugues.com",
"license": "MIT",
"authors": [
{
"name": "Nil Portugués Calderó",
"email": "contact@nilportugues.com"
}
],
"require": {
"php": ">=7",
"nilportugues/uuid": "^1.0",
"nilportugues/messagebus" : "^1.1"
},
"require-dev": {
"ext-redis" : "*",
"phpunit/phpunit": "5.*",
"fabpot/php-cs-fixer": "~1.9",
"predis/predis": "1.0.*",
"php-amqplib/php-amqplib": "2.6.*",
"pda/pheanstalk": "3.1.*",
"mongodb/mongodb": "1.0.*",
"doctrine/dbal": "2.5.*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"NilPortugues\\MessageBus\\EventBusQueue\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NilPortugues\\Tests\\MessageBus\\EventBusQueue\\": "tests/"
}
},
"suggest": {
"ext-redis" : "To use the RedisQueue Adapter in the ProducerEventBus & EventBusWorker",
"predis/predis": "To use the Predis Adapter in the ProducerEventBus & EventBusWorker",
"php-amqplib/php-amqplib": "To use the AmqpQueue Adapter in the ProducerEventBus & EventBusWorker",
"pda/pheanstalk": "To use the BeanstalkdQueue Adapter in the ProducerEventBus & EventBusWorker",
"mongodb/mongodb": "to use the MongoQueue Adapter in the ProducerEventBus & EventBusWorker",
"doctrine/dbal": "To use the PdoQueue Adapter in the ProducerEventBus & EventBusWorker"
}
}