-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
40 lines (40 loc) · 900 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
{
"name": "friendsoftypo3/openid",
"type": "typo3-cms-extension",
"keywords": ["typo3","openid"],
"description": "OpenID authentication for TYPO3 CMS",
"license": ["GPL-2.0-or-later"],
"homepage": "https://extensions.typo3.org/extension/openid",
"support": {
"docs": "https://docs.typo3.org/p/friendsoftypo3/openid/main/en-us/",
"issues": "https://github.com/FriendsOfTYPO3/openid/issues",
"source": "https://github.com/FriendsOfTYPO3/openid"
},
"authors": [
{
"name": "Dmitry Dulepov",
"email": "dmitry.dulepov@gmail.com",
"role": "Maintainer"
}
],
"require": {
"ext-gmp": "*",
"ext-curl": "*",
"ext-dom": "*",
"typo3/cms-core": "^13.0",
"typo3/cms-setup": "*"
},
"autoload": {
"psr-4": {
"FoT3\\Openid\\": "Classes/"
}
},
"extra": {
"branch-alias": {
"dev-release/13": "13.0.x-dev"
},
"typo3/cms": {
"extension-key": "openid"
}
}
}