forked from web-token/jwt-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
147 lines (146 loc) · 5.98 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"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-framework/contributors"
}
],
"autoload": {
"psr-4": {
"Jose\\": "src/",
"Jose\\Component\\Signature\\Algorithm\\": [
"src/SignatureAlgorithm/ECDSA",
"src/SignatureAlgorithm/EdDSA",
"src/SignatureAlgorithm/HMAC",
"src/SignatureAlgorithm/None",
"src/SignatureAlgorithm/RSA",
"src/SignatureAlgorithm/Experimental"
],
"Jose\\Component\\Core\\Util\\Ecc\\": [
"src/Ecc"
],
"Jose\\Component\\Encryption\\Algorithm\\": [
"src/EncryptionAlgorithm/Experimental"
],
"Jose\\Component\\Encryption\\Algorithm\\KeyEncryption\\": [
"src/EncryptionAlgorithm/KeyEncryption/AESGCMKW",
"src/EncryptionAlgorithm/KeyEncryption/AESKW",
"src/EncryptionAlgorithm/KeyEncryption/Direct",
"src/EncryptionAlgorithm/KeyEncryption/ECDHES",
"src/EncryptionAlgorithm/KeyEncryption/PBES2",
"src/EncryptionAlgorithm/KeyEncryption/RSA"
],
"Jose\\Component\\Encryption\\Algorithm\\ContentEncryption\\": [
"src/EncryptionAlgorithm/ContentEncryption/AESGCM",
"src/EncryptionAlgorithm/ContentEncryption/AESCBC"
]
}
},
"autoload-dev": {
"psr-4": {
"Jose\\Performance\\": "performance/"
}
},
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"fgrosse/phpasn1": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"spomky-labs/aes-key-wrap": "^5.0",
"spomky-labs/base64url": "^2.0",
"symfony/config": "^4.2",
"symfony/dependency-injection": "^4.2",
"symfony/framework-bundle": "^4.2",
"symfony/http-kernel": "^4.2"
},
"require-dev": {
"ext-curl": "*",
"ext-gmp": "*",
"ext-sodium": "*",
"bjeavons/zxcvbn-php": "^0.4.0",
"blackfire/php-sdk": "^1.14",
"nyholm/psr7": "^1.0",
"infection/infection": "^0.13",
"matthiasnoback/symfony-config-test": "^3.1|^4.0",
"php-coveralls/php-coveralls": "^2.0",
"php-http/httplug-bundle": "^1.7",
"php-http/mock-client": "^1.0",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-deprecation-rules": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^8.0",
"symfony/browser-kit": "^4.2",
"symfony/event-dispatcher": "^4.2",
"symfony/finder": "^4.2",
"symfony/phpunit-bridge": "^4.2",
"symfony/serializer": "^4.2",
"symfony/var-dumper": "^4.2"
},
"replace": {
"web-token/jwt-core": "self.version",
"web-token/jwt-checker": "self.version",
"web-token/jwt-signature": "self.version",
"web-token/jwt-encryption": "self.version",
"web-token/jwt-key-mgmt": "self.version",
"web-token/jwt-console": "self.version",
"web-token/jwt-nested-token": "self.version",
"web-token/jwt-bundle": "self.version",
"web-token/jwt-encryption-algorithm-aescbc": "self.version",
"web-token/jwt-encryption-algorithm-aesgcm": "self.version",
"web-token/jwt-encryption-algorithm-aesgcmkw": "self.version",
"web-token/jwt-encryption-algorithm-aeskw": "self.version",
"web-token/jwt-encryption-algorithm-dir": "self.version",
"web-token/jwt-encryption-algorithm-ecdh-es": "self.version",
"web-token/jwt-encryption-algorithm-pbes2": "self.version",
"web-token/jwt-encryption-algorithm-rsa": "self.version",
"web-token/jwt-signature-algorithm-ecdsa": "self.version",
"web-token/jwt-signature-algorithm-eddsa": "self.version",
"web-token/jwt-signature-algorithm-none": "self.version",
"web-token/jwt-signature-algorithm-hmac": "self.version",
"web-token/jwt-signature-algorithm-rsa": "self.version",
"web-token/jwt-util-ecc": "self.version",
"web-token/jwt-signature-algorithm-experimental": "self.version",
"web-token/jwt-encryption-algorithm-experimental": "self.version",
"web-token/signature-pack": "self.version",
"web-token/encryption-pack": "self.version"
},
"suggest":{
"ext-sodium": "Sodium is required for OKP key creation, EdDSA signature algorithm and ECDH-ES key encryption with OKP keys",
"bjeavons/zxcvbn-php": "Adds key quality check for oct keys.",
"php-http/httplug": "To enable JKU/X5U support.",
"php-http/httplug-bundle": "To enable JKU/X5U support.",
"php-http/message-factory": "To enable JKU/X5U support.",
"symfony/serializer": "Use the Symfony serializer to serialize/unserialize JWS and JWE tokens.",
"symfony/var-dumper": "Used to show data on the debug toolbar."
},
"extra": {
"branch-alias": {
"v1.0": "1.0.x-dev",
"v1.1": "1.1.x-dev",
"v1.2": "1.2.x-dev",
"v1.3": "1.3.x-dev",
"v2.0": "2.0.x-dev",
"v2.1": "2.1.x-dev"
}
},
"conflict": {
"spomky-labs/jose": "*"
},
"config": {
"sort-packages": true
}
}