forked from zenstruck/schedule-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 2.17 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
{
"name": "zenstruck/schedule-bundle",
"description": "Schedule Cron jobs (commands/callbacks/bash scripts) within your Symfony application.",
"homepage": "https://github.com/zenstruck/schedule-bundle",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["schedule", "cron"],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"dragonmantank/cron-expression": "^2.3|^3.0",
"symfony/console": "^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^4.0|^5.0|^6.0",
"symfony/event-dispatcher": "^4.0|^5.0|^6.0",
"symfony/http-kernel": "^4.0|^5.0|^6.0",
"symfony/polyfill-php80": "^1.15"
},
"require-dev": {
"lorisleiva/cron-translator": "^0.1.0|^0.3.1",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpstan/phpstan": "^1.4",
"psr/log": "^1.1",
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"symfony/http-client": "^4.3|^5.0|^6.0",
"symfony/lock": "^4.4|^5.0|^6.0",
"symfony/mailer": "^4.4|^5.0|^6.0",
"symfony/messenger": "^4.4|^5.0|^6.0",
"symfony/phpunit-bridge": "^6.0",
"symfony/process": "^4.2|^5.0|^6.0"
},
"suggest": {
"lorisleiva/cron-translator": "Displays human readable cron expression in schedule:list",
"symfony/http-client": "Allows usage of ping* extensions",
"symfony/lock": "Allows usage of withoutOverlapping and onSingleServer extensions (4.4+)",
"symfony/mailer": "Allows usage of email* extensions (4.4+)",
"symfony/process": "Allows usage of ProcessTask (4.2+)"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"conflict": {
"symfony/symfony": "<4.0"
},
"autoload": {
"psr-4": { "Zenstruck\\ScheduleBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\ScheduleBundle\\Tests\\": "tests/" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}