-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.37 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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
{
"name": "web-token/jwt-bundle",
"description": "JWT Bundle of the JWT Framework.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"JWS",
"JWT",
"JWE",
"JWA",
"JWK",
"JWKSet",
"Jot",
"Jose",
"RFC7515",
"RFC7516",
"RFC7517",
"RFC7518",
"RFC7519",
"RFC7520",
"Bundle",
"Symfony"
],
"homepage": "https://github.com/web-token",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},
{
"name": "All contributors",
"homepage": "https://github.com/web-token/jwt-bundle/contributors"
}
],
"autoload": {
"psr-4": {
"Jose\\Bundle\\JoseFramework\\": ""
}
},
"require": {
"php": ">=8.2",
"psr/event-dispatcher": "^1.0",
"symfony/config": "^7.0|^8.0",
"symfony/console": "^7.0|^8.0",
"symfony/dependency-injection": "^7.0|^8.0",
"symfony/event-dispatcher": "^7.0|^8.0",
"symfony/http-client-contracts": "^3.4",
"symfony/http-kernel": "^7.0|^8.0",
"web-token/jwt-library": "^4.0"
},
"suggest": {
"symfony/serializer": "Use the Symfony serializer to serialize/unserialize JWS and JWE tokens."
}
}