-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
56 lines (56 loc) · 1.68 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": "markup/job-queue-bundle",
"description": "The Markup Job Queue bundle integrates with oldsound/rabbiitmq-bundle to provide automatic scheduling of recurring console command jobs",
"keywords": ["recurring", "rabbit-mq", "job", "queue", "cron"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Calum Brodie",
"email": "calum@usemarkup.com"
},
{
"name": "Markup",
"homepage": "http://www.usemarkup.com/"
}
],
"require": {
"php": ">=7.1",
"symfony/framework-bundle": "^3.4|^4",
"symfony/finder": "^3.4|^4",
"symfony/yaml": "^3.4|^4",
"symfony/console": "^3.4|^4",
"symfony/process": "^3.4|^4",
"twig/twig": "^2",
"mtdowling/cron-expression": "1.0.*",
"doctrine/orm": "~2.7",
"doctrine/collections": "^1.6",
"doctrine/persistence": "^1.3",
"php-amqplib/rabbitmq-bundle": "^1.14",
"snc/redis-bundle": "~1.1.2|^2",
"markup/rabbitmq-management-api": ">=2.1.1",
"pagerfanta/pagerfanta": "~1.0.2|^2",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"phpunit/phpunit": "^7.2",
"mockery/mockery": "^1.2",
"symfony/form": "^3.4|^4",
"predis/predis": "^1.0",
"phpstan/phpstan-shim": "^0.11.8"
},
"suggest": {
"ricbra/rabbitmq-cli-consumer": "To consume jobs with Go instead of PHP"
},
"autoload": {
"psr-4": { "Markup\\JobQueueBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"bin-dir": "bin"
}
}