forked from lexik/LexikJWTAuthenticationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.2 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
{
"name": "lexik/jwt-authentication-bundle",
"type": "symfony-bundle",
"description": "This bundle provides JWT authentication for your Symfony2 REST API",
"keywords": ["Symfony2", "bundle", "jwt", "jws", "authentication", "api", "rest"],
"homepage": "https://github.com/lexik/LexikJWTAuthenticationBundle",
"license": "MIT",
"authors": [
{
"name": "Jeremy Barthe",
"email": "[email protected]"
},
{
"name": "Nicolas Cabot",
"email": "[email protected]"
},
{
"name": "Cedric Girard",
"email": "[email protected]"
},
{
"name": "Dev Lexik",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "~2.3",
"symfony/framework-bundle": "~2.3",
"namshi/jose": "~2.2"
},
"autoload": {
"psr-0": { "Lexik\\Bundle\\JWTAuthenticationBundle": "" }
},
"target-dir": "Lexik/Bundle/JWTAuthenticationBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "~4.1"
}
}