-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
75 lines (75 loc) · 2.14 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
{
"name": "panlatent/schedule",
"description": "Schedule plugin for CraftCMS",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"schedule",
"crontab",
"job"
],
"homepage": "https://github.com/panlatent/schedule",
"support": {
"docs": "https://docs.panlatent.com/projects/schedule",
"issues": "https://github.com/panlatent/schedule/issues"
},
"license": "proprietary",
"authors": [
{
"name": "[email protected]",
"homepage": "https://panlatent.com/"
}
],
"require": {
"php": ">=8.2",
"craftcms/cms": "^5.0.0",
"dragonmantank/cron-expression": "^3.3",
"guzzlehttp/guzzle": "^7.2",
"nesbot/carbon": "^1.22 || ^2.10 || ^3.0",
"panlatent/craft-action-abstract": "@dev",
"panlatent/cron-expression-descriptor": "^1.1",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"react/event-loop": "^1.5",
"symfony/process": "^6.0 || ^7.0",
"alexanderpas/http-enum": "^1.0",
"symfony/stopwatch": "^7.1"
},
"replace": {
"panlatent/craft-action-abstract": "self.version"
},
"suggest": {
"ext-intl": "Help translate cron express description"
},
"autoload": {
"psr-4": {
"panlatent\\schedule\\": "src/",
"panlatent\\craft\\actions\\abstract\\": "abstract/"
}
},
"extra": {
"name": "Schedule",
"handle": "schedule",
"changelogUrl": "https://raw.githubusercontent.com/panlatent/schedule/master/CHANGELOG.md",
"class": "panlatent\\schedule\\Plugin"
},
"require-dev": {
"codeception/codeception": "^5.1",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}