-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
composer.json
121 lines (121 loc) · 3.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "web-token/jwt-framework",
"description": "JSON Object Signing and Encryption library for PHP and Symfony Bundle.",
"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/jwt-framework",
"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\\": "src/Bundle/",
"Jose\\Experimental\\": "src/Experimental/",
"Jose\\Component\\": "src/Library/"
}
},
"autoload-dev": {
"psr-4": {
"Jose\\Performance\\": "performance/",
"Jose\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-openssl": "*",
"brick/math": "^0.12",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"spomky-labs/pki-framework": "^1.2.1",
"symfony/config": "^7.0",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/http-client-contracts": "^3.4",
"symfony/http-kernel": "^7.0"
},
"require-dev": {
"ext-curl": "*",
"ext-gmp": "*",
"ext-sodium": "*",
"ekino/phpstan-banned-code": "^1.0 || ^2.0",
"ergebnis/phpunit-slow-test-detector": "^2.14",
"infection/infection": "^0.29",
"matthiasnoback/symfony-config-test": "5.1.x-dev",
"paragonie/sodium_compat": "^1.20|^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpbench/phpbench": "^1.2",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.5.10|^11.0",
"qossmic/deptrac": "^2.0",
"rector/rector": "^1.0",
"roave/security-advisories": "dev-latest",
"spomky-labs/aes-key-wrap": "^7.0",
"staabm/phpstan-dba": "^0.2.79",
"staabm/phpstan-todo-by": "^0.1.25",
"struggle-for-php/sfp-phpstan-psr-log": "^0.20|^0.21|^0.22",
"symfony/browser-kit": "^7.0",
"symfony/http-client": "^7.0",
"symfony/clock": "^7.0",
"symfony/finder": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/serializer": "^7.0",
"symfony/var-dumper": "^7.0",
"symfony/yaml": "^7.0",
"symplify/easy-coding-standard": "^12.0"
},
"replace": {
"web-token/jwt-bundle": "self.version",
"web-token/jwt-library": "self.version",
"web-token/jwt-experimental": "self.version"
},
"suggest": {
"symfony/serializer": "Use the Symfony serializer to serialize/unserialize JWS and JWE tokens.",
"symfony/var-dumper": "Used to show data on the debug toolbar.",
"spomky-labs/aes-key-wrap": "To enable AES Key Wrap algorithm."
},
"conflict": {
"spomky-labs/jose": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true,
"php-http/discovery": true,
"infection/extension-installer": false
}
}
}