-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
38 lines (38 loc) · 1.03 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
{
"name": "digicademy/cobj_xslt",
"type": "typo3-cms-extension",
"description": "Extends TYPO3 with a new content object XSLT for flexible XML transformations",
"homepage": "http://www.adwmainz.de/",
"authors": [{
"name": "Torsten Schrade",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://www.adwmainz.de"
}],
"license": "GPL-2.0-or-later",
"keywords": ["TYPO3", "XML", "XSLT", "Digital Humanities"],
"support": {
"issues": "https://github.com/digicademy/cobj_xslt/issues"
},
"require": {
"typo3/cms-core": "^9.5 || ^10.4",
"ext-libxml": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-xsl": "*"
},
"replace": {
"typo3-ter/cobj_xslt": "self.version"
},
"autoload": {
"psr-4": {
"Digicademy\\CobjXslt\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "cobj_xslt"
}
}
}