forked from markuspoerschke/iCal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.68 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
{
"name": "eluceo/ical",
"description": "The eluceo/iCal package offers an abstraction layer for creating iCalendars. You can easily create iCal files by using PHP objects instead of typing your *.ics file by hand. The output will follow RFC 5545 as best as possible.",
"license": "MIT",
"keywords": [
"ical",
"php calendar",
"icalendar",
"ics",
"calendar"
],
"authors": [
{
"name": "Markus Poerschke",
"email": "markus@poerschke.nrw",
"role": "Developer"
}
],
"homepage": "https://github.com/markuspoerschke/iCal",
"support": {
"issues": "https://github.com/markuspoerschke/iCal/issues",
"forum": "https://github.com/markuspoerschke/iCal/discussions",
"source": "https://github.com/markuspoerschke/iCal",
"docs": "https://ical.poerschke.nrw"
},
"require": {
"php": ">=7.4 || ~8.0.0 || ~8.1.0",
"ext-mbstring": "*",
"symfony/deprecation-contracts": "^2.1 || ^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.23.1",
"friendsofphp/php-cs-fixer": "^3.4",
"infection/infection": "^0.23",
"phpmd/phpmd": "^2.11.1",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.8"
},
"conflict": {
"php": "7.4.6"
},
"autoload": {
"psr-4": {
"Eluceo\\iCal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Eluceo\\iCal\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
}
}
}