forked from unionco/calendarize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.3 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
{
"name": "unionco/calendarize",
"description": "A calendar field type providing functionality for recurrence.",
"version": "2.0.0",
"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",
"ext-intl": "*",
"rlanvin/php-rrule": "^1.6",
"nesbot/carbon": "^2.66"
},
"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"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}