-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
51 lines (51 loc) · 1.14 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
46
47
48
49
50
51
{
"name": "doc/jats-parser",
"description": "JATS XML parser",
"type": "library",
"license": "GPLv3",
"authors": [
{
"name": "Vitaliy Bezsheiko",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"repositories": [
{
"type": "package",
"package": {
"name": "citation-style-language/locales",
"version":"1.0.0",
"source": {
"type": "git",
"url": "https://github.com/citation-style-language/locales.git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "citation-style-language/styles-distribution",
"version":"1.0.0",
"source": {
"type": "git",
"url": "https://github.com/citation-style-language/styles-distribution.git",
"reference": "master"
}
}
}
],
"require": {
"php": "^7.3|^8.0",
"tecnickcom/tcpdf": "^6.2.17",
"citation-style-language/locales":"@dev",
"citation-style-language/styles-distribution":"@dev",
"seboettg/citeproc-php": "^2"
},
"autoload": {
"psr-4": {
"JATSParser\\": "src/JATSParser"
}
}
}