-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·52 lines (51 loc) · 1.1 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
50
51
{
"name": "josefglatz/beuser-fastswitch",
"type": "typo3-cms-extension",
"description": "Fast backend user switch for TYPO3 CMS administrator users.",
"keywords": [
"TYPO3",
"extension",
"productivity",
"editors",
"improvements",
"maintenance"
],
"authors": [
{
"name": "Josef Glatz",
"email": "typo3@josefglatz.at",
"homepage": "https://www.josefglatz.at",
"role": "Developer"
}
],
"license": "GPL-3.0-or-later",
"require": {
"typo3/cms-core": "^13.4 || dev-main",
"php": "^8.2 || ^8.3"
},
"autoload": {
"psr-4": {
"JosefGlatz\\BeuserFastswitch\\": "Classes"
}
},
"replace": {
"typo3-ter/beuser-fastswitch": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/beuser_fastswitch ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/beuser_fastswitch"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "beuser_fastswitch"
}
}
}