-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.69 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
{
"name": "gewerk/recurring-dates",
"description": "Datetime field for Craft CMS with multiple and recurring occurrences",
"type": "craft-plugin",
"version": "1.0.0-beta.7",
"license": "proprietary",
"authors": [
{
"name": "gewerk",
"email": "[email protected]",
"homepage": "https://gewerk.dev/"
},
{
"name": "Dennis Morhardt",
"email": "[email protected]",
"homepage": "https://dennismorhardt.de/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/gewerk/recurring-dates/issues?state=open",
"source": "https://github.com/gewerk/recurring-dates",
"docs": "https://github.com/gewerk/recurring-dates",
"rss": "https://github.com/gewerk/recurring-dates/commits/v2.atom"
},
"require": {
"craftcms/cms": "^4.0",
"eluceo/ical": "^2.12",
"openpsa/ranger": "^0.5",
"simshaun/recurr": "^5.0"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Gewerk\\RecurringDates\\": "src/"
}
},
"extra": {
"name": "Recurring Dates",
"handle": "recurring-dates",
"documentationUrl": "https://gewerk.dev/plugins/recurring-dates",
"changelogUrl": "https://raw.githubusercontent.com/gewerk/recurring-dates/main/CHANGELOG.md",
"class": "Gewerk\\RecurringDates\\Plugin"
}
}