-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 865 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
{
"name": "lake/larke-jwt-sm2",
"description": "A JWT Signer library with SM2 and SM3.",
"keywords": [
"laravel",
"lake",
"larke",
"admin",
"larke-jwt",
"sm2"
],
"homepage": "https://github.com/deatil/larke-jwt-sm2",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "deatil",
"email": "deatil@github.com",
"homepage": "https://github.com/deatil",
"role": "Developer"
}
],
"require": {
"lake/larke-jwt": "^1.2",
"lpilp/guomi": "1.0.*"
},
"autoload": {
"psr-4": {
"Larke\\JwtSM2\\": "src"
}
},
"extra" : {
"laravel" : {
"providers" : [
"Larke\\JwtSM2\\ServiceProvider"
]
}
}
}