forked from lexik/LexikJWTAuthenticationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.59 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
{
"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": "^5.5|^7.0",
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/security-bundle": "^3.4|^4.0",
"lcobucci/jwt": "^3.2",
"namshi/jose": "^7.2"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.4|^4.0",
"symfony/browser-kit": "^3.4|^4.0",
"symfony/console": "^3.4|^4.0",
"symfony/dom-crawler": "^3.4|^4.0",
"symfony/var-dumper": "^3.4|^4.0",
"symfony/yaml": "^3.4|^4.0",
"friendsofphp/php-cs-fixer": "^1.1|^2.8"
},
"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/"]
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"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"
]
}
}