This repository was archived by the owner on Feb 5, 2024. It is now read-only.
forked from facile-it/php-jose-verifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
100 lines (100 loc) · 3.45 KB
/
composer.json
File metadata and controls
100 lines (100 loc) · 3.45 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"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": "thomas.vargiu@facile.it"
}
],
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"facile-it/facile-coding-standard": true
}
},
"keywords": [
"jwt",
"jws",
"jwe",
"jwk",
"jwks",
"jose",
"oauth2",
"token",
"verifier",
"validate",
"openid",
"access token"
],
"require": {
"php": "^8.0",
"ext-json": "*",
"php-http/discovery": "^1.7",
"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/polyfill-mbstring": "^1.15",
"web-token/jwt-checker": "^2.2.0 || ^3.0",
"web-token/jwt-core": "^2.2.0 || ^3.0",
"web-token/jwt-key-mgmt": "^2.2.0 || ^3.0",
"web-token/jwt-signature": "^2.2.0 || ^3.0",
"web-token/jwt-signature-algorithm-rsa": "^2.2.0 || ^3.0"
},
"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": "^0.5.2",
"friendsofphp/php-cs-fixer": "^3.14.3",
"laminas/laminas-diactoros": "^2.17 || ^3.0.0",
"php-http/curl-client": "^2.2.1",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.6.3",
"vimeo/psalm": "^5.6.0",
"web-token/jwt-encryption": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-aescbc": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-aesgcm": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-aesgcmkw": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-aeskw": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-dir": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-ecdh-es": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-experimental": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-pbes2": "^2.2.0 || ^3.0",
"web-token/jwt-encryption-algorithm-rsa": "^2.2.0 || ^3.0",
"web-token/jwt-signature-algorithm-eddsa": "^2.2.0 || ^3.0",
"web-token/jwt-nested-token": "^2.2.0 || ^3.0",
"web-token/jwt-signature-algorithm-ecdsa": "^2.2.0 || ^3.0",
"web-token/jwt-signature-algorithm-experimental": "^2.2.0 || ^3.0",
"web-token/jwt-signature-algorithm-hmac": "^2.2.0 || ^3.0",
"web-token/jwt-signature-algorithm-none": "^2.2.0 || ^3.0",
"web-token/jwt-util-ecc": "^2.2.0 || ^3.0"
},
"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"
]
}
}