-
Notifications
You must be signed in to change notification settings - Fork 38
/
composer.json
76 lines (76 loc) · 2.79 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
70
71
72
73
74
75
76
{
"name": "mmucklo/queue-bundle",
"description": "Symfony2/3/4/5 Queue Bundle (for background jobs) supporting Mongo (Doctrine ODM), Mysql (and any Doctrine ORM), RabbitMQ, Beanstalkd, Redis, and ... {write your own}",
"keywords": ["queue", "Message queue","mysql","doctrine","mongo","mongodb","orm","odm","beanstalkd","rabbit_mq", "rabbitmq", "beanstalk", "redis", "symfony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "David Tee"
},
{
"name": "Matthew J. Mucklo",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "6.*|7.*",
"cocur/background-process": ">=0.7"
},
"require-dev": {
"doctrine/orm": "^2.7",
"doctrine/cache": "^1.7",
"doctrine/collections": "^1.5",
"doctrine/instantiator": "^1.1",
"doctrine/common": "^2.8|^3.0",
"doctrine/dbal": "^2.6",
"doctrine/mongodb-odm": "1.*|^2.0",
"mmucklo/grid-bundle": ">=7.2.2",
"symfony/console": "3.*|4.*|5.*",
"symfony/templating": "2.*|3.*|4.*|5.*",
"symfony/twig-bundle": "2.*|3.*|4.*|5.*",
"pda/pheanstalk": "^4.0",
"php-amqplib/php-amqplib": "^2.11",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^7|^8|^9",
"phpunit/php-code-coverage": "^7|^8|^9",
"beberlei/doctrineextensions": "^1.0",
"symfony/proxy-manager-bridge": ">=2.7|>=3.3|4.*|5.*",
"doctrine/doctrine-bundle": ">=1.8.1",
"predis/predis": "^1.1",
"alcaeus/mongo-php-adapter": "^1.1",
"snc/redis-bundle": "^3.2",
"scrutinizer/ocular": "dev-master"
},
"suggest": {
"mmucklo/grid-bundle": ">=8.0.0",
"snc/redis-bundle": "If using redis",
"predis/predis": "If using redis",
"ext-redis": "Alternative redis library",
"pda/pheanstalk": "If using beanstalkd",
"php-amqplib/php-amqplib": "If using RabbitMQ",
"doctrine/orm": "If using an RDBMS",
"doctrine/mongodb-odm": "If using mongo db",
"oro/doctrine-extensions": "For YEAR, MONTH, DAY, HOUR, MINUTE date functions if using JobTiming trends",
"beberlei/DoctrineExtensions": "Alternative for YEAR, MONTH, DAY, HOUR, MINUTE if using JobTiming trends",
"alcaeus/mongo-php-adapter": "If trying to use MongoDB ODM on PHP 7.0 or greater"
},
"conflict": {
"mmucklo/grid-bundle": "<8.0.0"
},
"config": {
"bin-dir": "bin",
"platform": {
"ext-mongo": "1.6.16"
}
},
"autoload": {
"psr-4": { "Dtc\\QueueBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}