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