-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
57 lines (57 loc) · 2.11 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
{
"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": ">=8.0",
"dragonmantank/cron-expression": "^2.3|^3.0",
"symfony/console": "^5.4|^6.0|^7.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/event-dispatcher": "^5.4|^6.0|^7.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0"
},
"require-dev": {
"lorisleiva/cron-translator": "^0.1.0|^0.3.1|^0.4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1|^5.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5",
"psr/log": "^1.1",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/http-client": "^5.4|^6.0|^7.0",
"symfony/lock": "^5.4|^6.0|^7.0",
"symfony/mailer": "^5.4|^6.0|^7.0",
"symfony/messenger": "^5.4|^6.0|^7.0",
"symfony/notifier": "^5.4|^6.0|^7.0",
"symfony/phpunit-bridge": "^6.2|^7.0",
"symfony/process": "^5.4|^6.0|^7.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",
"symfony/mailer": "Allows usage of email* extensions",
"symfony/notifier": "Allows usage of notify* extensions",
"symfony/process": "Allows usage of ProcessTask"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\ScheduleBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\ScheduleBundle\\Tests\\": "tests/" }
},
"minimum-stability": "dev",
"prefer-stable": true
}