forked from lexik/LexikJWTAuthenticationBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
92 lines (92 loc) · 3.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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "lexik/jwt-authentication-bundle",
"type": "symfony-bundle",
"description": "This bundle provides JWT authentication for your Symfony REST API",
"keywords": ["Symfony", "bundle", "jwt", "jws", "authentication", "api", "rest"],
"homepage": "https://github.com/lexik/LexikJWTAuthenticationBundle",
"license": "MIT",
"authors": [
{
"name": "Jeremy Barthe",
"email": "[email protected]",
"homepage": "https://github.com/jeremyb"
},
{
"name": "Nicolas Cabot",
"email": "[email protected]",
"homepage": "https://github.com/slashfan"
},
{
"name": "Cedric Girard",
"email": "[email protected]",
"homepage": "https://github.com/cedric-g"
},
{
"name": "Dev Lexik",
"email": "[email protected]",
"homepage": "https://github.com/lexik"
},
{
"name": "Robin Chalas",
"email": "[email protected]",
"homepage": "https://github.com/chalasr"
},
{
"name": "Lexik Community",
"homepage": "https://github.com/lexik/LexikJWTAuthenticationBundle/graphs/contributors"
}
],
"require": {
"php": ">=7.1",
"ext-openssl": "*",
"lcobucci/jwt": "^3.4|^4.0",
"namshi/jose": "^7.2",
"symfony/config": "^4.4|^5.3|^6.0",
"symfony/dependency-injection": "^4.4|^5.3|^6.0",
"symfony/deprecation-contracts": "^2.4|^3.0",
"symfony/event-dispatcher": "^4.4|^5.3|^6.0",
"symfony/http-foundation": "^4.4|^5.3|^6.0",
"symfony/http-kernel": "^4.4|^5.3|^6.0",
"symfony/property-access": "^4.4|^5.3|^6.0",
"symfony/security-bundle": "^4.4|^5.3|^6.0",
"symfony/translation-contracts": "^1.0|^2.0|^3.0"
},
"require-dev": {
"symfony/browser-kit": "^4.4|^5.3|^6.0",
"symfony/console": "^4.4|^5.3|^6.0",
"symfony/dom-crawler": "^4.4|^5.3|^6.0",
"symfony/filesystem": "^4.4|^5.3|^6.0",
"symfony/framework-bundle": "^4.4|^5.3|^6.0",
"symfony/phpunit-bridge": "^4.4|^5.3|^6.0",
"symfony/security-guard": "^4.4|^5.3",
"symfony/var-dumper": "^4.4|^5.3|^6.0",
"symfony/yaml": "^4.4|^5.3|^6.0"
},
"conflict": {
"symfony/console": "<4.4"
},
"suggest": {
"gesdinet/jwt-refresh-token-bundle": "Implements a refresh token system over Json Web Tokens in Symfony",
"spomky-labs/lexik-jose-bridge": "Provides a JWT Token encoder with encryption support"
},
"autoload": {
"psr-4": {
"Lexik\\Bundle\\JWTAuthenticationBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"vendor/bin/simple-phpunit",
"ENCODER=lcobucci vendor/bin/simple-phpunit",
"ENCODER=lcobucci ALGORITHM=HS256 vendor/bin/simple-phpunit",
"ENCODER=user_id_claim vendor/bin/simple-phpunit",
"PROVIDER=lexik_jwt vendor/bin/simple-phpunit"
]
}
}