This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.73 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
{
"name": "bnomei/kirby3-ics",
"description": "Generate ICS Files",
"type": "kirby-plugin",
"version": "1.0.7",
"license": "MIT",
"authors": [
{
"name": "Bruno Meilick",
"email": "b@bnomei.com"
}
],
"keywords": [
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"calendar",
"event",
"events",
"alarm",
"organizer",
"attendee",
"ics",
"rfc2445",
"rfc5545",
"ical",
"icalendar"
],
"autoload": {
"psr-4": {
"Bnomei\\": "classes/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"require": {
"php": ">=8.0",
"getkirby/composer-installer": "^1.1",
"kigkonsult/icalcreator": "^2.27"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"getkirby/cms": "^3.2",
"php-coveralls/php-coveralls": "^2.1"
},
"scripts": {
"analyze": "phpstan analyse classes",
"insights": "./vendor/bin/phpinsights -v",
"fix": "php-cs-fixer fix",
"test": [
"mkdir -p tests/logs",
"phpunit --configuration ./phpunit.xml"
],
"dist": [
"composer install --no-dev --optimize-autoloader",
"git rm -rf --cached .; git add .;"
],
"kirby": [
"composer install",
"composer update",
"composer install --working-dir=tests/kirby --no-dev --optimize-autoloader",
"composer update --working-dir=tests/kirby"
]
},
"extra": {
"kirby-cms-path": "tests/kirby"
},
"suggest": {
"bnomei/kirby3-calendar": "Build customizable structures for calendar events",
"bnomei/kirby3-janitor": "Provides tools to add a custom Panel button to trigger download of ICS/CSV/QRCode Files"
}
}