-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
39 lines (39 loc) · 1.1 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
{
"name": "liturgical-calendar/api",
"description": "an API for a perpetual Catholic Liturgical Calendar",
"type": "library",
"keywords": ["api","rest","restful","liturgy","calendar","liturgical","universal","roman","catholic"],
"homepage": "https://litcal.johnromanodorazio.com",
"require": {
"php": ">=8.1",
"swaggest/json-schema": "~0.12",
"cboden/ratchet": "~0.4",
"sabre/vobject": "^4.5.1",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"squizlabs/php_codesniffer": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"LiturgicalCalendar\\Api\\": "src/"
},
"files": ["src/pgettext.php"]
},
"authors": [
{
"name": "John R. D'Orazio",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"post-install-cmd": [
"LiturgicalCalendar\\Api\\Utilities::postInstall"
],
"post-update-cmd": [
"LiturgicalCalendar\\Api\\Utilities::postInstall"
]
}
}