-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.06 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
{
"name": "friendsoftypo3/sudo-mode",
"type": "typo3-cms-extension",
"description": "TYPO3 sudo mode",
"homepage": "https://extensions.typo3.org/extension/sudo_mode",
"support": {
"docs": "https://docs.typo3.org/p/friendsoftypo3/sudo-mode/main/en-us/",
"issues": "https://github.com/FriendsOfTYPO3/sudo-mode/issues",
"source": "https://github.com/FriendsOfTYPO3/sudo-mode"
},
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3", "security", "sudo", "mitigation"],
"authors": [
{
"name": "Oliver Hader",
"email": "[email protected]",
"homepage": "https://xn--hofhckerei-t5a.de/"
}
],
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-xml": "*",
"typo3/cms-core": "^9.5 || ^10.4"
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\SudoMode\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FriendsOfTYPO3\\SudoMode\\Tests\\": "Tests/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "sudo_mode"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5"
}
}