-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
59 lines (59 loc) · 1.42 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
{
"name": "sop/jwx",
"description": "A PHP library for JSON web tokens (JWT) with signature (JWS) and encryption (JWE) support.",
"homepage": "https://github.com/sop/jwx",
"license": "MIT",
"type": "library",
"keywords": [
"jwt",
"json web token",
"jws",
"json web signature",
"jwe",
"json web encryption",
"jwk",
"json web key",
"json",
"token",
"jose"
],
"authors": [
{
"name": "Joni Eskelinen",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-openssl": "*",
"ext-hash": "*",
"sop/crypto-types": "^0.3.0",
"sop/crypto-encoding": "^0.3.0",
"sop/aes-kw": "^3.0.0",
"sop/gcm": "^3.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"ietf-jose/cookbook": "*"
},
"autoload": {
"psr-4": {
"Sop\\JWX\\": "lib/JWX/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "ietf-jose/cookbook",
"version": "1.0.0",
"source": {
"url": "https://github.com/ietf-jose/cookbook.git",
"type": "git",
"reference": "master"
}
}
}
]
}