forked from panlatent/schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.66 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
{
"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://schedule.panlatent.com",
"issues": "https://github.com/panlatent/schedule/issues"
},
"license": "MIT",
"authors": [
{
"name": "[email protected]",
"homepage": "https://panlatent.com/"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0",
"nesbot/carbon": "^1.22 || ^2.10",
"omnilight/yii2-scheduling": "^1.1",
"symfony/process": "^4.2 || ^5.0 || ^6.0",
"guzzlehttp/guzzle": "^7.2",
"panlatent/cron-expression-descriptor": "^1.1"
},
"suggest": {
"ext-intl": "Help translate cron express description"
},
"autoload": {
"psr-4": {
"panlatent\\schedule\\": "src/"
}
},
"extra": {
"name": "Schedule",
"handle": "schedule",
"changelogUrl": "https://raw.githubusercontent.com/panlatent/schedule/master/CHANGELOG.md",
"class": "panlatent\\schedule\\Plugin",
"branch-alias": {
"dev-master": "0.4.x-dev"
}
},
"require-dev": {
"codeception/codeception": "^4.1"
},
"config": {
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}