forked from Spomky-Labs/jose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.4 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
{
"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": ">=5.5.9",
"lib-openssl": "*",
"spomky-labs/base64url": "^1.0",
"spomky-labs/pbkdf2": "^1.0",
"spomky-labs/aes-key-wrap": "^2.0",
"phpseclib/phpseclib": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^4.5|^5.0",
"satooshi/php-coveralls": "^1.0",
"mdanter/ecc": "0.3"
},
"suggest":{
"ext-crypto": "Required to use AES GCM based algorithms.",
"mdanter/ecc": "Required to use ECC based algorithms (use v0.3 only)."
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}