-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 899 Bytes
/
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
{
"name": "liturgical-calendar/alexa-newsbrief",
"description": "Liturgy of the Day as an Amazon Alexa skill available for your daily news brief, using the Liturgical Calendar API",
"type": "library",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"LiturgicalCalendar\\AlexaNewsBrief\\": "src/"
},
"files": ["src/pgettext.php"]
},
"authors": [
{
"name": "John R. D'Orazio",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"vlucas/phpdotenv": "^5.6"
},
"scripts": {
"post-install-cmd": [
"LiturgicalCalendar\\AlexaNewsBrief\\Utilities::postInstall"
],
"post-update-cmd": [
"LiturgicalCalendar\\AlexaNewsBrief\\Utilities::postInstall"
]
}
}