This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
forked from lcobucci/jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.67 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
64
65
66
{
"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": "lcobucci@gmail.com",
"role": "Developer"
}
],
"keywords": [
"JWT",
"JWS"
],
"license": [
"BSD-3-Clause"
],
"require": {
"php": "^7.2",
"ext-gmp": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"fgrosse/phpasn1": "^2.0",
"lcobucci/clock": "^1.0",
"lcobucci/jose-parsing": "~2.1"
},
"require-dev": {
"infection/infection": "^0.11",
"lcobucci/coding-standard": "^2.0",
"mikey179/vfsStream": "^1.6",
"phpbench/phpbench": "dev-master@dev",
"phpmd/phpmd": "^2.5",
"phpstan/phpstan": "^0.10",
"phpstan/phpstan-deprecation-rules": "^0.10",
"phpstan/phpstan-phpunit": "^0.10",
"phpstan/phpstan-strict-rules": "^0.10",
"phpunit/php-invoker": "^2.0",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.2"
},
"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"
}
}
}