forked from auth0/symfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (39 loc) · 958 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": "auth0/jwt-auth-bundle",
"type": "symfony-bundle",
"description": "Support for authenticating users JWT.",
"keywords": [
"authentication",
"firewall",
"jwt",
"security",
"auth0"
],
"homepage": "https://github.com/auth0/jwt-auth-bundle",
"license": "MIT",
"authors": [
{
"name": "Germán Lena",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5 || ^7.0",
"symfony/framework-bundle": "^2.8 || ~3.0 || ~4.0",
"auth0/auth0-php": "^5.0.3"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36 || ^5.7.21",
"nyholm/symfony-bundle-test": "^1.0.2"
},
"autoload": {
"psr-4": {
"Auth0\\JWTAuthBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Auth0\\JWTAuthBundle\\": "Tests/"
}
}
}