-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 991 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
36
37
{
"name": "liturgical-calendar/components",
"description": "Reusable frontend components for the Liturgical Calendar API",
"type": "library",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"LiturgicalCalendar\\Components\\": "src/"
}
},
"authors": [
{
"name": "John R. D'Orazio",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"ext-intl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"vlucas/phpdotenv": "^5.6"
},
"scripts": {
"post-install-cmd": [
"LiturgicalCalendar\\Components\\CalendarSelect::postInstall"
],
"post-update-cmd": [
"LiturgicalCalendar\\Components\\CalendarSelect::postInstall"
],
"test": "phpunit tests",
"test-filter": "phpunit tests --filter"
}
}