-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.63 KB
/
Copy pathcomposer.json
File metadata and controls
65 lines (65 loc) · 1.63 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "evoweb/ew-llxml2xliff",
"type": "typo3-cms-extension",
"description": "Convert locallang.xml/.php files to .xlf",
"homepage": "https://www.evoweb.de",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"llxml",
"xliff",
"converter"
],
"support" : {
"source": "https://github.com/evoWeb/ew_llxml2xliff",
"issues": "https://github.com/evoWeb/ew_llxml2xliff/issues",
"docs": "https://docs.typo3.org/p/evoweb/ew-llxml2xliff/master/en-us/"
},
"config": {
"cache-dir": ".cache/composer",
"bin-dir": "bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"php": "^8.4",
"ext-simplexml": "*",
"ext-libxml": "*",
"typo3/cms-core": "^14.0 || 15.*.*@dev || dev-main",
"typo3/cms-backend": "^14.0 || 15.*.*@dev || dev-main",
"typo3/cms-extbase": "^14.0 || 15.*.*@dev || dev-main",
"typo3/cms-fluid": "^14.0 || 15.*.*@dev || dev-main",
"typo3/cms-frontend": "^14.0 || 15.*.*@dev || dev-main",
"typo3/cms-extensionmanager": "^14.0 || 15.*.*@dev || dev-main",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"phpstan/phpstan": "^2.1.54"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"typo3/cms": {
"extension-key": "ew_llxml2xliff"
}
},
"scripts": {
"prepare-release": [
"rm -rf .github",
"rm -rf Build",
"rm -rf Tests",
"rm .gitattributes",
"rm .gitignore",
"sed -i \"s/version' => '.*'/version' => '$(echo ${GITHUB_REF} | cut -d / -f 3)'/\" ext_emconf.php\n"
]
},
"autoload": {
"psr-4": {
"Evoweb\\EwLlxml2xliff\\": "Classes/"
}
}
}