-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.59 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
{
"name": "kigkonsult/phpjscalendar",
"type": "library",
"description": "PhpJsCalendar is the PHP implementation of rfc8984, A JSON Representation of Calendar Data",
"keywords": [
"rfc8984",
"json",
"management",
"calendar",
"vCalendar",
"rfc5545",
"event",
"task",
"alarm"
],
"license": "LGPL-3.0-or-later",
"minimum-stability": "stable",
"authors": [
{
"name": "Kjell-Inge Gustafsson",
"email": "ical@kigkonsult.se"
}
],
"funding": [
{
"type": "other",
"url": "https://paypal.me/kigkonsult"
}
],
"support": {
"issues": "https://github.com/iCalcreator/PhpJsCalendar/issues"
},
"autoload": {
"files": ["autoload.php"],
"psr-4": { "Kigkonsult\\PhpJsCalendar\\": ["src/" ] }
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"degraciamathieu/php-arguments-detector": ">=0.5.0",
"fakerphp/faker": "dev-main",
"kigkonsult/fakerlocreltypes": ">=1.0",
"kigkonsult/icalcreator": ">=v2.41.16",
"phpcompatibility/php-compatibility": ">=9.3.5",
"phpstan/phpstan": ">=0.9.3",
"phpunit/phpunit": ">=6.5.13",
"squizlabs/php_codesniffer": ">=3.5.5"
},
"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"
}
}