-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.34 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
{
"name": "vicephp/virtue-jwt",
"description": "Making JWT more Pythonic...",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"ext-openssl": "*"
},
"require-dev": {
"ext-SimpleXML": "*",
"ext-dom": "*",
"phpstan/phpstan": "^0.12.0",
"phpunit/phpunit": "^8.0 | ^9.0",
"mockery/mockery": "^1.2",
"aws/aws-sdk-php": "^3.200",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"webmozart/assert": "^1.0"
},
"autoload": {
"psr-4": {
"Virtue\\JWT\\": "src/JWT/",
"Virtue\\JWK\\": "src/JWK/",
"Virtue\\Aws\\": "src/Aws/"
}
},
"autoload-dev": {
"psr-4": {
"Virtue\\JWT\\": "tests/JWT/",
"Virtue\\JWK\\": "tests/JWK/",
"Virtue\\Aws\\": "tests/Aws/"
}
},
"suggest": {
"ext-SimpleXML": "Needed to support SimpleXMLRenderer",
"ext-dom": "Needed to support DOMDocumentRenderer",
"aws/aws-sdk-php": "Needed for AwsKmsSign algorithm",
"guzzlehttp/guzzle": "Needed for OpenId KeysStore",
"psr/simple-cache": "Needed for OpenId Caching KeysStore"
}
}