forked from IDCI-Consulting/IDCIKeycloakSecurityBundle
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
55 lines (55 loc) · 1.55 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
{
"name": "nti/keycloak-security-bundle",
"type": "symfony-bundle",
"description": "Allows you to easily handle you application security thanks to keycloak.",
"keywords": [],
"license" : [
"MIT"
],
"authors": [
{
"name": "Samir Comprés",
"email": "[email protected]"
},
{
"name": "Yansell Rivas",
"email": "[email protected]"
},
{
"name": "Angel Bencosme",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"symfony/dependency-injection": "^3.3 || ^4.0",
"symfony/framework-bundle": "^3.0 || ^4.0",
"symfony/routing": "^2.7|^3.0|^4.0",
"symfony/http-foundation": "^2.7|^3.0|^4.0",
"knpuniversity/oauth2-client-bundle": "~1.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"symfony/expression-language": "^3.0 || ^4.0",
"symfony/finder": "^3.0 || ^4.0",
"symfony/form": "^3.0 || ^4.0",
"symfony/stopwatch": "^3.0 || ^4.0",
"symfony/twig-bundle": "*",
"symfony/validator": "^3.0 || ^4.0",
"symfony/yaml": "^3.0 || ^4.0"
},
"autoload": {
"psr-4": {
"NTI\\KeycloakSecurityBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"NTI\\KeycloakSecurityBundle\\Tests\\": "Tests"
}
}
}