-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 986 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
{
"name": "flipboxfactory/craft-jwt",
"description": "JWT Authorization",
"version": "1.1.0",
"type": "craft-plugin",
"require": {
"craftcms/cms": "^3.0",
"lcobucci/jwt": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"flipbox\\craft\\jwt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"flipbox\\craft\\jwt\\tests\\": "tests/src/"
}
},
"extra": {
"name": "JWT Authorization",
"handle": "jwt",
"class": "flipbox\\craft\\jwt\\Jwt",
"developer": "Flipbox Digital",
"developerUrl": "https://www.flipboxdigital.com",
"changelogUrl": "https://raw.githubusercontent.com/flipboxfactory/craft-jwt/master/CHANGELOG.md",
"downloadUrl": "https://github.com/flipboxfactory/craft-jwt/archive/master.zip",
"documentationUrl": "https://github.com/flipboxfactory/craft-jwt/blob/master/README.md",
"schemaVersion": "1.0.0"
}
}