forked from Walkman100/craft-cognito-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.49 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
52
53
54
55
56
57
58
59
60
{
"name": "structureit/craft-cognito-auth",
"description": "Enable authentication to Craft using Amazon Cognito with JWTs",
"type": "craft-plugin",
"version": "1.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft jwt",
"cognito",
"aws cognito",
"amazon cognito",
"aws",
"amazon",
"user pool"
],
"support": {
"docs": "https://github.com/Walkman100/craft-cognito-auth",
"issues": "https://github.com/Walkman100/craft-cognito-auth/issues"
},
"license": "MIT",
"authors": [
{
"name": "Mike Pierce",
"homepage": "https://michaelpierce.trade"
},
{
"name": "Edenspiekermann",
"homepage": "https://edenspiekermann.com"
},
{
"name": "StructureIt Devs",
"homepage": "https://github.com/StructureIt"
}
],
"require": {
"craftcms/cms": "^3.3",
"lcobucci/jwt": "^3.3",
"codercat/jwk-to-pem": "^0.0.3"
},
"autoload": {
"psr-4": {
"structureit\\craftcognitoauth\\": "src/"
}
},
"extra": {
"name": "Craft Cognito Auth",
"handle": "craft-cognito-auth",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/Walkman100/craft-cognito-auth/master/CHANGELOG.md",
"components": {
"jWT": "structureit\\craftcognitoauth\\services\\JWT",
"CognitoJWK": "structureit\\craftcognitoauth\\services\\CognitoJWK"
},
"class": "structureit\\craftcognitoauth\\CraftCognitoAuth"
}
}