-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 1.15 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
{
"name": "digicademy/lod",
"type": "typo3-cms-extension",
"description": "Linked Open Data for TYPO3 provides a semantic layer with API, terminology service, RDF serializer and IRI resolver",
"homepage": "http://www.digitale-akademie.de",
"authors": [
{
"name": "Torsten Schrade",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://www.adwmainz.de"
}
],
"license": ["GPL-2.0+"],
"keywords": ["TYPO3", "Linked Open Data", "LOD", "RDF", "Knowledge Graph", "Semantic Web"],
"support": {
"issues": "https://github.com/digicademy/lod/issues"
},
"version": "1.0.0",
"require": {
"typo3/cms-core": ">=11.0.0 || <=11.5.99",
"ext-json": "*"
},
"suggest": {
"easyrdf/easyrdf": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF"
},
"replace": {
"typo3-ter/lod": "self.version"
},
"autoload": {
"psr-4": {
"Digicademy\\Lod\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "lod"
}
}
}