-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
82 lines (82 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "facile-it/php-jose-verifier",
"description": "JWT Token Verifier. A JWT verifier for access tokens, id tokens and others",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas Vargiu",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"facile-it/facile-coding-standard": true,
"php-http/discovery": true
}
},
"keywords": [
"jwt",
"jws",
"jwe",
"jwk",
"jwks",
"jose",
"oauth2",
"token",
"verifier",
"validate",
"openid",
"access token"
],
"require": {
"php": "^8.1",
"ext-json": "*",
"nyholm/psr7": "^1.8",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"spomky-labs/base64url": "^2.0.1",
"symfony/http-client": "^6.0 || ^7.0",
"symfony/polyfill-mbstring": "^1.15",
"web-token/jwt-library": "^3.4"
},
"autoload": {
"files": [
"src/Internal/functions/derived_key.php",
"src/Internal/functions/jose_secret_key.php"
],
"psr-4": {
"Facile\\JoseVerifier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\JoseVerifier\\Test\\": "tests/"
}
},
"require-dev": {
"facile-it/facile-coding-standard": "^1.2.0",
"friendsofphp/php-cs-fixer": "^3.14.3",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5.20 || ^11.1.0",
"spomky-labs/aes-key-wrap": "^7.0",
"vimeo/psalm": "^5.23.1",
"web-token/jwt-library": "^3.4.3"
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff --allow-risky=yes",
"cs-fix": "php-cs-fixer fix --diff --allow-risky=yes",
"psalm": "psalm",
"test": "phpunit",
"test-coverage": "phpunit --coverage-text",
"check": [
"@cs-check",
"@psalm",
"@test"
]
}
}