-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 930 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
32
33
34
35
{
"name": "liturgical-calendar/frontend",
"description": "Frontend website for the Liturgical Calendar API",
"type": "library",
"require": {
"liturgical-calendar/components": "^3.1",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^11.3"
},
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"LiturgicalCalendar\\Frontend\\": "src/"
},
"files": ["src/pgettext.php"]
},
"authors": [
{
"name": "John R. D'Orazio",
"email": "priest@johnromanodorazio.com"
}
],
"minimum-stability": "stable",
"scripts": {
"post-install-cmd": [
"LiturgicalCalendar\\Frontend\\Utilities::postInstall"
],
"post-update-cmd": [
"LiturgicalCalendar\\Frontend\\Utilities::postInstall"
],
"test": "phpunit tests"
}
}