-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
50 lines (50 loc) · 1.34 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
{
"name": "unionco/calendarize",
"description": "A calendar field type providing functionality for recurrence.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"calendarize"
],
"support": {
"docs": "https://github.com/unionco/calendarize",
"issues": "https://github.com/unionco/calendarize/issues?state=open"
},
"license": "MIT",
"authors": [
{
"name": "Franco Valdes",
"homepage": "https://union.co"
}
],
"require": {
"craftcms/cms": "^4.0",
"rlanvin/php-rrule": "~1.6.0"
},
"autoload": {
"psr-4": {
"unionco\\calendarize\\": "src/"
}
},
"extra": {
"name": "Calendarize",
"handle": "calendarize",
"documentationUrl": "https://github.com/unionco/calendarize/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/unionco/calendarize/master/CHANGELOG.md",
"class": "unionco\\calendarize\\Calendarize"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}