-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.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
{
"name": "matfish/craft-console-scheduler",
"description": "Schedule Console Commands in Code",
"type": "craft-plugin",
"keywords": [
"console",
"command",
"schedule"
],
"license": "proprietary",
"authors": [
{
"name": "Mat Fish",
"homepage": "https://github.com/matfish2/craft-console-scheduler"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/matfish2/craft-console-scheduler/issues?state=open",
"source": "https://github.com/matfish2/craft-console-scheduler",
"docs": "https://github.com/matfish2/craft-console-scheduler/blob/main/README.md"
},
"require": {
"craftcms/cms": "^5.0",
"dragonmantank/cron-expression": "^3.3"
},
"autoload": {
"psr-4": {
"matfish\\ConsoleScheduler\\": "src/"
}
},
"extra": {
"name": "Console Scheduler",
"handle": "console-scheduler",
"changelogUrl": "https://raw.githubusercontent.com/matfish2/craft-console-scheduler/main/CHANGELOG.md",
"class": "matfish\\ConsoleScheduler\\Plugin"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}