-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 1.64 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
{
"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.1",
"psr/event-dispatcher": "^1.0",
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/event-dispatcher": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"web-token/jwt-core": "^3.0"
},
"suggest": {
"web-token/jwt-checker": "Add header and claim checker managers as Symfony services.",
"web-token/jwt-console": "Add Keys (JWK) and Key sets (JWKSet) management commands for your Symfony console.",
"web-token/jwt-encryption": "Add Encrypted tokens (JWE) support and useful Symfony services.",
"web-token/jwt-key-mgmt": "Add Keys (JWK) and Key sets (JWKSet) management tools.",
"web-token/jwt-signature": "Add signed tokens (JWS) support and useful Symfony services.",
"symfony/serializer": "Use the Symfony serializer to serialize/unserialize JWS and JWE tokens."
}
}