forked from iCalcreator/iCalcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
90 lines (90 loc) · 2.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "kigkonsult/icalcreator",
"type": "library",
"description": "iCalcreator is the PHP implementation of rfc2445/rfc5545 and rfc updates, management of calendar information",
"keywords": [
"rfc2445",
"rfc5545",
"rfc5870",
"rfc6321",
"rfc6868",
"rfc7529",
"rfc7808",
"rfc7953",
"rfc7986",
"rfc9073",
"rfc9074",
"management",
"calendar",
"vCalendar",
"event",
"todo",
"alarm",
"vevent",
"vtodo",
"vjournal",
"vfreebusy",
"valarm",
"participant",
"location",
"resource",
"availability",
"vtimezone",
"standard",
"daylight",
"ical",
"xml",
"json"
],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Kjell-Inge Gustafsson",
"email": "[email protected]"
}
],
"funding": [
{
"type": "other",
"url": "https://www.buymeacoffee.com/kigkonsult"
},
{
"type": "other",
"url": "https://paypal.me/kigkonsult"
}
],
"support": {
"issues": "https://github.com/iCalcreator/iCalcreator/issues"
},
"autoload": {
"classmap": ["src/"],
"files": ["autoload.php"],
"psr-4": { "Kigkonsult\\Icalcreator\\": ["src/"] }
},
"require": {
"php": ">=8.0",
"ext-intl": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-zlib": "*",
"ext-mbstring": "*"
},
"require-dev": {
"ext-xdebug": "*",
"degraciamathieu/php-arguments-detector": ">=0.5.0",
"phpcompatibility/php-compatibility": ">=9.3.5",
"phpmd/phpmd": ">=2.13.0",
"phpstan/phpstan": ">=0.9.3",
"phpunit/phpunit": ">=6.5.13",
"squizlabs/php_codesniffer": ">=3.5.5",
"vimeo/psalm": "*"
},
"config": {
"classmap-authoritative": true,
"sort-packages": true
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
}
}