-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.02 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
{
"name": "localzet/lwt",
"description": "Localzet LWT is a library for working with Localzet Web Tokens, which are based on JWT (JSON Web Tokens). It provides functionality for creating, verifying, and handling tokens using modern technologies and standards.",
"type": "library",
"keywords": [
"Localzet Web Tokens",
"JWT",
"PHP",
"library",
"localzet",
"AGPL",
"tokens",
"openssl",
"mbstring"
],
"license": "AGPL-3.0-or-later",
"authors": [
{
"role": "Developer",
"name": "Ivan Zorin",
"email": "[email protected]",
"homepage": "https://github.com/localzet"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/localzet/LWT/issues",
"source": "https://github.com/localzet/LWT"
},
"require": {
"php": ">=7.4",
"ext-openssl": "*",
"ext-mbstring": "*",
"ext-json": "*"
},
"suggest": {
"ext-sodium": "For EdDSA"
},
"autoload": {
"psr-4": {
"localzet\\": "src"
}
}
}