forked from ZContent/icalendar
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
42 lines (42 loc) · 1.18 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
{
"name": "phpfui/icalendar",
"type": "library",
"description": "A modern fork of the icalendar.org PHP implementation of rfc5545, management of iCal formatted files",
"keywords": [ "rfc2445",
"rfc5545",
"rfc6321",
"management",
"icalendar",
"calendar",
"vCalendar",
"vevent",
"vtodo",
"vjournal",
"vfreebusy",
"valarm",
"vtimezone",
"standard",
"daylight",
"file" ],
"time" : "2019-10-31",
"license": "GPL-3.0-or-later",
"homepage": "https://icalendar.org/php-library.html",
"authors": [
{
"name": "Bruce Wells",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"ICalendarOrg\\": "src/ICalendarOrg/"}
},
"require": {
"php": ">=7.4 <8.5"
},
"require-dev": {
"phpunit/phpunit": "<12.0",
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^2.0",
"phpfui/phpunit-syntax-coverage": "dev-master"
}
}