forked from okta/okta-jwt-verifier-php
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 1020 Bytes
/
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
{
"name": "okta/jwt-verifier",
"description": "A verifier library for working with Okta JWT's",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Brian Retterer",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Okta\\JwtVerifier\\": "src/"
}
},
"require": {
"php": "^7.0",
"symfony/yaml": "^3.2|^4.0",
"nesbot/carbon": "^1.22",
"psr/http-message": "^1.0",
"php-http/client-common": "^1.1",
"php-http/httplug": "^1.1",
"php-http/message": "^1.5",
"php-http/discovery": "^1.2",
"php-http/curl-client": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"symfony/var-dumper": "^3.2",
"squizlabs/php_codesniffer": "3.0.1",
"php-http/mock-client": "^1.0",
"guzzlehttp/psr7": "^1.4",
"spomky-labs/jose": "^6.1",
"firebase/php-jwt": "^5.0"
}
}