-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.15 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
{
"name": "webcoast/jwt-sso",
"title": "JWT SSO",
"description": "Single Sign-On based on JSON Web Token for TYPO3 CMS",
"keywords": ["typo3", "cms", "login", "sso", "jwt"],
"type": "typo3-cms-extension",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"typo3/cms-core": "^10.4 || ^11.5",
"typo3/cms-fluid": "^10.4 || ^11.5",
"typo3/cms-frontend": "^10.4 || ^11.5",
"web-token/jwt-core": "^v2.2",
"web-token/jwt-key-mgmt": "^v2.2",
"web-token/jwt-nested-token": "^v2.2",
"web-token/jwt-signature-algorithm-rsa": "^v2.2",
"web-token/jwt-encryption-algorithm-rsa": "^v2.2"
},
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"WEBcoast\\JwtSso\\": "Classes"
}
},
"authors": [
{
"name": "Thorben Nissen",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"typo3/cms":{
"extension-key": "jwt_sso"
}
}
}