-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.23 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
40
41
42
43
44
45
{
"name": "urbanmonastics/sourcetextparser",
"description": "A Fast Markdown Parser extended for Liturgy in PHP.",
"keywords": ["markdown", "parser", "liturgy", "bible", "scripture"],
"homepage": "http://developers.urbanmonastic.org/source-text-parser/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Paul Prins",
"role": "Developer",
"homepage": "https://paul.build/",
"email": "[email protected]"
},
{
"name": "Urban Monastics",
"homepage": "https://developers.urbanmonastic.org/"
}
],
"require": {
"php": ">=7.0.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": ">=4.8.35"
},
"replace": {
"urbanmonastics/sourceparser": "*"
},
"autoload": {
"psr-4": {"UrbanMonastics\\SourceTextParser\\": ""},
"exclude-from-classmap": [
"/docker/",
"/test/"
]
},
"autoload-dev": {
"psr-0": {
"TestSourceTextParser": "test/",
"SourceTextParserTest": "test/",
"CommonMarkTest": "test/",
"CommonMarkTestWeak": "test/"
}
}
}