-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.22 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.22 KB
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
{
"name": "urbanmonastics/sourcetextlibrary",
"description": "A simple way to load, read, and present texts from various source text libraries.",
"keywords": ["markdown", "parser", "liturgy", "bible", "scripture"],
"homepage": "http://developers.urbanmonastic.org/source-text-library/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Paul Prins",
"role": "Developer",
"homepage": "https://paul.build/",
"email": "paulprins@gmail.com"
},
{
"name": "Urban Monastics",
"homepage": "https://developers.urbanmonastic.org/"
}
],
"require": {
"php": ">=8.1.0",
"ext-mbstring": "*",
"urbanmonastics/sourcetextparser": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": ">=4.8.35"
},
"autoload": {
"psr-4": {"UrbanMonastics\\SourceTextLibrary\\": ""},
"classmap": ["Controllers/", "Models/"],
"exclude-from-classmap": [
"/docker/",
"/test/"
]
},
"autoload-dev": {
"psr-0": {
"TestSourceTextLibrary": "test/",
"SourceTextLibraryTest": "test/"
}
}
}