This repository has been archived by the owner on Dec 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
/
composer.json
56 lines (56 loc) · 1.7 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
{
"name": "spomky-labs/jose",
"description": "JSON Object Signing and Encryption library for PHP.",
"type": "library",
"license": "MIT",
"keywords": ["JWS", "JWT", "JWE", "JWA", "JWK", "JWKSet", "Jot", "Jose", "RFC7515", "RFC7516", "RFC7517", "RFC7518", "RFC7519", "RFC7520"],
"homepage": "https://github.com/Spomky-Labs/Jose",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},{
"name": "All contributors",
"homepage": "https://github.com/Spomky-Labs/jose/contributors"
}
],
"autoload": {
"psr-4": {
"Jose\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jose\\Test\\": "tests/"
}
},
"require": {
"php": "^7.0",
"ext-gmp": "*",
"lib-openssl": "*",
"spomky-labs/base64url": "^1.0",
"spomky-labs/aes-key-wrap": "^3.0|^4.0",
"spomky-labs/php-aes-gcm": "^1.2",
"beberlei/assert": "^2.4",
"symfony/polyfill-mbstring": "^1.1",
"fgrosse/phpasn1": "^2.0",
"mdanter/ecc": "0.5.*",
"psr/cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"satooshi/php-coveralls": "^2.0",
"symfony/cache": "^2.0|^3.0|^4.0"
},
"suggest":{
"ext-crypto": "Highly recommended when you use AES GCM based algorithms.",
"ext-ed25519": "For EdDSA with Ed25519 curves support.",
"ext-curve25519": "For EdDSA with X25519 curves support.",
"ext-curl": "Needed by the JKU/X5U keyset factory."
},
"extra": {
"branch-alias": {
"dev-master": "7.1.x-dev"
}
}
}