forked from unionco/calendarize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.08 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
{
"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": "^3.0.0-RC1",
"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"
}
}