-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
44 lines (44 loc) · 999 Bytes
/
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/rsaauth",
"type": "typo3-cms-extension",
"description": "Legacy service to authenticate TYPO3 BE and FE users using private/public key encryption of passwords",
"homepage": "https://extensions.typo3.org/extension/rsaauth",
"support": {
"docs": "https://docs.typo3.org/p/friendsoftypo3/rsaauth/main/en-us/",
"issues": "https://github.com/FriendsOfTYPO3/rsaauth/issues",
"source": "https://github.com/FriendsOfTYPO3/rsaauth"
},
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "TYPO3 Core Team",
"email": "[email protected]",
"role": "Developer"
}],
"config": {
"sort-packages": true
},
"require": {
"typo3/cms-core": "^10.0"
},
"conflict": {
"typo3/cms": "*"
},
"replace": {
"typo3/cms-rsaauth": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "rsaauth"
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Rsaauth\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\Rsaauth\\Tests\\": "Tests/"
}
}
}