-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.17 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
{
"name": "smarcet/jose4php",
"description": "JWT, JWS, JWE, JWA and JWK implementation in PHP",
"keywords": [
"JSON Web Token", "JSON Web Signature", "JSON Web Encryption", "JSON Web Algorithms",
"JWT", "JWS", "JWE", "JOSE", "OpenID Connect", "ID Token", "JWA"
],
"homepage": "https://github.com/smarcet",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sebastian Marcet",
"email": "smarcet@gmail.com"
}
],
"require": {
"phpseclib/phpseclib": "2.0.11",
"php": ">=7.1.3"
},
"suggest":{
"lib-openssl": "Required to use AES algorithms (except AES GCM)",
"ext-gmp":"Required if BCMath is not installed (this extension is highly recommended!)",
"ext-bcmath":"Required if GMP is not installed",
"ext-crypto":"Required to use AES GCM algorithms",
"ext-zlib":"Required to use Compression algorithms",
"ext-json":"Required to use json algorithms",
"phpseclib/phpseclib":"Required to use RSA based algorithms"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "0.9.*"
},
"autoload": {
"classmap": [
"src/",
"tests/"
]
},
"minimum-stability": "dev"
}