-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
51 lines (51 loc) · 1.43 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
{
"name": "okvpn/cron-bundle",
"description": "Docker friendly Symfony cron bundle for handle scheduled tasks consistently, parallel or across a cluster, like Symfony Messenger",
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/vtsykun/cron-bundle",
"support": {
"email": "tsykun314@gmail.com",
"issues": "https://github.com/vtsykun/cron-bundle/issues",
"source": "https://github.com/vtsykun/cron-bundle/releases"
},
"keywords": [
"cron-bundle",
"schedule-bundle",
"symfony-cron",
"cron",
"symfony",
"schedule",
"messenger",
"symfony-messenger",
"cron-message-queue",
"cron-locking",
"cron-messenger"
],
"authors": [
{
"name": "Uladzimir Tsykun",
"email": "tsykun314@gmail.com"
}
],
"require": {
"php": ">=7.2",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0 || ^7.0",
"dragonmantank/cron-expression": "^3.0"
},
"autoload": {
"psr-4": {
"Okvpn\\Bundle\\CronBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
},
"suggest": {
"symfony/process": "For using shell commands",
"symfony/lock": "For locking jobs",
"symfony/messenger": "For handle cron jobs in the message queue."
}
}