-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.04 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "dkd/tc-beuser",
"type": "typo3-cms-extension",
"description": "A collection of modules for administer BE users more comfortably",
"keywords": [
"TYPO3",
"extension",
"be_user",
"administration"
],
"homepage": "https://github.com/dkd/tc_beuser",
"authors": [
{
"name": "Ivan Kartolo",
"role": "Developer"
},
{
"name": "Jan Haffner",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later"
],
"extra": {
"typo3/cms": {
"extension-key": "tc_beuser"
}
},
"support": {
"issues": "https://github.com/dkd/tc_beuser"
},
"require": {
"typo3/cms-core": "^10.4"
},
"autoload": {
"psr-4": {
"Dkd\\TcBeuser\\": "Classes/"
}
},
"replace": {
"tc_beuser": "self.version",
"typo3-ter/tc-beuser": "self.version"
},
"scripts": {
"render-docs": "docker run --rm --name \"t3docsrun-sphinx\" -v $(pwd):/PROJECT:ro -v $(pwd)Documentation-GENERATED-temp:/RESULT t3docs/render-documentation makehtml -c allow_unsafe 1;"
}
}