-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 921 Bytes
/
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
{
"name": "ns/token-bundle",
"type": "symfony-bundle",
"description": "This bundle provides a JWT token integration with symfony",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Nathanael David Noblet",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"ext-json": "*",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/http-client": "^6.0|^7.0",
"twig/twig": "^2.0|^3.0",
"lcobucci/jwt": "^4.0|^5.0",
"lcobucci/clock": "^3.0",
"codercat/jwk-to-pem": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"liip/rmt": "^1.7",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"NS\\TokenBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NS\\TokenBundle\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}