forked from markuspoerschke/iCal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 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
40
41
{
"name":"eluceo/ical",
"description":"The eluceo/iCal package offers a abstraction layer for creating iCalendars. You can easily create iCal files by using PHP object instead of typing your *.ics file by hand. The output will follow RFC 2445 as best as possible.",
"license":"MIT",
"homepage":"https://github.com/eluceo/iCal",
"authors":[
{
"name":"Markus Poerschke",
"email":"[email protected]",
"role":"Developer"
},
{
"name":"Maciej Łebkowski",
"email":"[email protected]",
"role":"Contributor"
}
],
"keywords":[
"ical",
"php calendar",
"icalendar",
"ics",
"calendar"
],
"support":{
"issues":"https://github.com/eluceo/iCal/issues",
"source":"https://github.com/eluceo/iCal"
},
"autoload":{
"psr-0":{
"Eluceo\\iCal":"src/"
}
},
"target-dir":"",
"require":{
"php":">=5.3.0"
},
"require-dev":{
"phpunit/phpunit": "3.7.*"
}
}