-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.26 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": "tmilos/jose-jwt",
"description": "Javascript Object Signing and Encryption JOSE PHP library, supporting JSON Web Tokens JWT and JSON Web Encryption JWE",
"keywords": ["JOSE", "JWT", "JWS", "JWE", "JWA", "Javascript Object Signing and Encryption", "JSON Web Tokens", "JSON Web Encryption"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/tmilos/jose-jwt",
"authors": [
{
"name": "Milos Tomic",
"email": "tmilos@gmail.com",
"homepage": "http://github.com/tmilos"
}
],
"support": {
"issues": "https://github.com/tmilos/jose-jwt/issues"
},
"autoload": {
"psr-4": {
"Tmilos\\JoseJwt\\": "src/",
"Tests\\Tmilos\\JoseJwt\\": "tests/"
}
},
"require": {
"php": ">=5.5",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.6",
"spomky-labs/aes-key-wrap": "~2.0|~3.0",
"satooshi/php-coveralls": "~1.0"
},
"suggest": {
"spomky-labs/aes-key-wrap": "If you want to use encryption algorithms A128KW, A192KW, or A256KW"
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "stable"
}