-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
48 lines (48 loc) · 1.19 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
{
"name": "edenspiekermann/craft-jwt-auth",
"description": "Enable authentication to Craft through the use of JSON Web Tokens (JWT)",
"type": "craft-plugin",
"version": "0.2.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"craft jwt"
],
"support": {
"docs": "https://github.com/edenspiekermann/craft-jwt-auth",
"issues": "https://github.com/edenspiekermann/craft-jwt-auth/issues"
},
"license": "MIT",
"authors": [
{
"name": "Mike Pierce",
"homepage": "https://michaelpierce.trade"
},
{
"name": "Edenspiekermann",
"homepage": "https://edenspiekermann.com"
}
],
"require": {
"craftcms/cms": "^3.3",
"lcobucci/jwt": "^3.3"
},
"autoload": {
"psr-4": {
"edenspiekermann\\craftjwtauth\\": "src/"
}
},
"extra": {
"name": "Craft JWT Auth",
"handle": "craft-jwt-auth",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/edenspiekermann/craft-jwt-auth/master/CHANGELOG.md",
"components": {
"jWT": "edenspiekermann\\craftjwtauth\\services\\JWT"
},
"class": "edenspiekermann\\craftjwtauth\\CraftJwtAuth"
}
}