forked from lcobucci/jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "lcobucci/jwt",
"description": "A simple library to work with JSON Web Token and JSON Web Signature",
"type": "library",
"authors": [
{
"name": "Luís Cobucci",
"email": "[email protected]",
"role": "Developer"
}
],
"keywords": [
"JWT",
"JWS"
],
"license": [
"BSD-3-Clause"
],
"require": {
"php": "^7.1",
"ext-openssl": "*",
"lcobucci/clock": "^1.0",
"lcobucci/jose-parsing": "~2.1"
},
"require-dev": {
"humbug/humbug": "1.0.0-rc.0@RC",
"mdanter/ecc": "^0.4",
"mikey179/vfsStream": "^1.6",
"phpbench/phpbench": "dev-master@dev",
"phpmd/phpmd": "^2.5",
"phpstan/phpstan": "^0.8",
"phpunit/php-invoker": "^1.1",
"phpunit/phpunit": "^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest":{
"mdanter/ecc": "Required to use Elliptic Curves based algorithms."
},
"autoload": {
"psr-4": {
"Lcobucci\\JWT\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Lcobucci\\JWT\\": [
"test/_keys",
"test/unit",
"test/performance"
],
"Lcobucci\\JWT\\FunctionalTests\\": "test/functional"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}