-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (34 loc) · 998 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
{
"name": "ciricihq/jwt-client-bundle",
"license": "GPL-3.0",
"type": "symfony-bundle",
"description": "Symfony client for manage JWT login against external JWT server or to check if coming JWT token is valid",
"keywords": ["jwt", "api", "authentication"],
"authors": [
{
"name": "Cirici New Media",
"homepage": "http://cirici.com"
},
{
"name": "Genar Trias Ortiz",
"homepage": "http://genar.me",
"email": "genar@cirici.com"
}
],
"require": {
"php": ">=5.5",
"namshi/jose": "^6.0",
"eightpoints/guzzle-bundle": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "4.8.*|~5.2",
"symfony/symfony": "~2.3.1|~2.7|~3.0",
"lexik/jwt-authentication-bundle": "^1.5"
},
"suggest": {
"eightpoints/guzzle-bundle": "In order to achieve the external JWT server authentication"
},
"autoload": {
"psr-4": { "Cirici\\JWTClientBundle\\": "" }
}
}