-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.11 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
{
"name": "t3thi/translation-handling",
"description": "TYPO3 extension to showcase TYPO3 translation handling capabilities",
"type": "typo3-cms-extension",
"authors": [{
"name": "TYPO3 Translation Handling Initiative",
"role": "Developer"
}],
"license": "GPL-2.0-or-later",
"keywords": [
"typo3",
"translation",
"initiative",
"strict",
"free",
"fallback"
],
"support": {
"chat": "https://typo3.slack.com/archives/C05D7UF1L8M",
"docs": "https://github.com/t3thi/translation-handling",
"issues": "https://github.com/t3thi/translation-handling/issues",
"source": "https://github.com/t3thi/translation-handling"
},
"require": {
"typo3/cms-core": "^12.0 || ^13.0",
"typo3/cms-fluid-styled-content": "^12.0 || ^13.0"
},
"autoload": {
"psr-4": {
"T3thi\\TranslationHandling\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "translation_handling"
}
},
"scripts": {
"build": "cd Build && npm run build",
"lint": "cd Build && npm run lint",
"watch": "cd Build && npm run watch"
}
}