-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (73 loc) · 2.17 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
{
"name": "remessage/json-web-token",
"description": "A JSON Web Token (RFC 7519) implementation library",
"type": "library",
"license": "Apache-2.0",
"homepage": "https://dev.remessage.ru/packages/json-web-token",
"keywords": [
"JSON Web Token", "JSON Web Signature", "JSON Web Encryption",
"JWT", "JWS", "JWE"
],
"authors": [
{
"name": "Oleg Kozlov",
"email": "h1karo@remessage.ru",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"RM\\Standard\\Jwt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RM\\Standard\\Jwt\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"ext-json": "*",
"ext-sodium": "*",
"ext-mbstring": "*",
"psr/log": "^3.0",
"psr/http-client": "^1.0.0",
"psr/http-factory": "^1.0.0",
"psr/event-dispatcher": "^1.0.0",
"doctrine/collections": "^2.1.4",
"symfony/deprecation-contracts": "^3.0",
"symfony/serializer": "^7.0",
"symfony/event-dispatcher": "^7.0",
"laminas/laminas-math": "^3.2",
"phpseclib/phpseclib": "^3.0",
"paragonie/constant_time_encoding": "^2.3"
},
"require-dev": {
"ramsey/uuid": "^4.7.5",
"predis/predis": "^2.2",
"phpunit/phpunit": "^10.5",
"symfony/stopwatch": "^7.0",
"bentools/cartesian-product": "^1.3",
"friendsofphp/php-cs-fixer": "^3.8",
"remessage/ruleset": "^1.0",
"vimeo/psalm": "^5.16",
"psalm/plugin-phpunit": "^0.18.4"
},
"suggest": {
"ext-memcache": "To use memcache token storage",
"predis/predis": "To use redis token storage",
"ramsey/uuid": "To use UUID identifier generator",
"laminas/laminas-math": "To use Laminas Rand identifier generator"
},
"config": {
"sort-packages": false,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"scripts": {
"test": "phpunit",
"lint": "php-cs-fixer fix --show-progress=dots",
"analyze": "psalm"
}
}