-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.05 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
{
"name": "endroid/calendar",
"description": "Endroid Calendar",
"keywords": ["endroid", "calendar", "google", "ics", "ical", "php"],
"homepage": "https://github.com/endroid/calendar",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeroen van den Enden",
"email": "info@endroid.nl"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"endroid/installer": "^1.5.0",
"endroid/quality": "dev-main"
},
"suggest": {
"roave/security-advisories": "Avoids installation of package versions with vulnerabilities"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"endroid/installer": true
}
},
"autoload": {
"psr-4": {
"Endroid\\Calendar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Endroid\\Calendar\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
}
}