forked from Daniel-KM/Omeka-S-module-DataTypeRdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "daniel-km/omeka-s-module-data-type-rdf",
"type": "library",
"description": "Implement some W3C RDF datatypes (html, xml, boolean) in order to simplify user input and to give more semanticity to values of resources.",
"license": "CECILL-2.1",
"authors": [
{
"name": "Daniel Berthereau",
"email": "[email protected]"
}
],
"homepage": "https://gitlab.com/Daniel-KM/Omeka-S-module-DataTypeRdf",
"support": {
"issues": "https://gitlab.com/Daniel-KM/Omeka-S-module-DataTypeRdf/-/issues",
"forum": "https://forum.omeka.org/"
},
"keywords": [
"Omeka S",
"module",
"data type",
"footnotes"
],
"require": {
"ext-xml": "*",
"andykirk/ckeditor-footnotes": "1.2.0",
"codemirror/codemirror": "^5.65",
"oomphinc/composer-installers-extender": "^2.0"
},
"autoload": {
"psr-4": {
"DataTypeRdf\\": "src/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "andykirk/ckeditor-footnotes",
"version": "1.2.0",
"type": "omeka-addon-asset",
"dist": {
"type": "tar",
"url": "https://github.com/Daniel-KM/Omeka-S-module-DataTypeRdf/releases/download/3.4.14/CKEditorFootnotes-1.2.0-fix.tar.gz"
}
}
},
{
"type": "package",
"package": {
"type": "omeka-addon-asset",
"name": "codemirror/codemirror",
"version": "5.65.13",
"dist": {
"type": "tar",
"url": "https://codemirror.net/5/codemirror.zip"
}
}
}
],
"extra": {
"installer-types": ["omeka-addon-asset"],
"installer-paths": {
"asset/vendor/{$name}/": [
"type:omeka-addon-asset"
]
},
"installer-name" : "DataTypeRdf"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"oomphinc/composer-installers-extender": true
}
}
}