forked from iCalcreator/iCalcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.11 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": "kigkonsult/icalcreator",
"type": "library",
"description": "iCalcreator is the PHP implementation of rfc2445/rfc5545, management of iCal formatted files",
"keywords": [ "rfc2445",
"rfc5545",
"rfc6321",
"management",
"calendar",
"vCalendar",
"vevent",
"vtodo",
"vjournal",
"vfreebusy",
"valarm",
"vtimezone",
"standard",
"daylight",
"file" ],
"time" : "2018-10-31",
"license": "(AGPLv3 or proprietary)",
"homepage": "http://kigkonsult.se",
"support": {
"issues": "http://kigkonsult.se/contact/index.php"
},
"authors": [
{
"name": "Kjell-Inge Gustafsson",
"email": "[email protected]"
}
],
"autoload": {
"files": ["autoload.php"],
"psr-4": { "kigkonsult\\iCalcreator\\": ["src/", "src/util/", "src/traits/"] }
},
"require": {
"php": ">=5.4"
}
}