-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
49 lines (49 loc) · 1.4 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
{
"name": "sitegeist/translatelabels",
"type": "typo3-cms-extension",
"description": "This extension extends the TYPO3 translation handling by translation records that can be edited by backend users. In this way backend users are able to translate labels without having access to the language files.",
"license": ["GPL-2.0-or-later"],
"authors": [
{
"name": "Alexander Bohndorf",
"role": "Developer"
},
{
"name": "Christian Rath-Ulrich",
"role": "Developer"
}
],
"require": {
"typo3/cms-core": "^11.5 || ^10.4",
"typo3/cms-adminpanel": "^11.5 || ^10.4"
},
"autoload": {
"psr-4": {
"Sitegeist\\Translatelabels\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\Translatelabels\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/translatelabels": "self.version"
},
"require-dev": {
"typo3/testing-framework": "^6.10"
},
"extra": {
"typo3/cms": {
"extension-key": "translatelabels"
}
},
"scripts": {
"prepare-release": [
"sed -i'' -e \"s/'version' => ''/'version' => '$(echo ${GITHUB_REF#refs/tags/} | sed 's/v//')'/\" ext_emconf.php",
"rm -r Tests",
"rm .editorconfig",
"rm .gitignore"
]
}
}