forked from digicademy/cobj_xslt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.16 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
{
"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+"],
"keywords": ["TYPO3", "XML", "XSLT", "Digital Humanities"],
"support": {
"issues": "https://github.com/digicademy/cobj_xslt/issues"
},
"version": "1.9.0",
"require": {
"typo3/cms-core": ">=8.7.0 || <=10.4.99",
"ext-libxml": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-xsl": "*"
},
"replace": {
"cobj_xslt": "self.version",
"typo3-ter/cobj_xslt": "self.version"
},
"autoload": {
"psr-4": {
"Digicademy\\CobjXslt\\": "Classes/"
}
},
"extra": {
"typo3/class-alias-loader": {
"class-alias-maps": [
"Migrations/Code/ClassAliasMap.php"
]
}
}
}