-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathcomposer.json
executable file
·53 lines (53 loc) · 1.57 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
{
"name": "idci/keycloak-security-bundle",
"type": "symfony-bundle",
"description": "Allows you to easily handle you application security thanks to keycloak.",
"license": "CECILL-C",
"keywords": [],
"authors": [
{
"name": "Gabriel BONDAZ",
"email": "[email protected]"
},
{
"name": "Benjamin BOUDIER",
"email": "[email protected]"
},
{
"name": "Camille SCHWARZ",
"email": "[email protected]"
}
],
"require": {
"symfony/dependency-injection": "^5.3|^6.0",
"symfony/framework-bundle": "^5.3|^6.0",
"symfony/http-client": "^5.3|^6.0",
"symfony/routing": "^5.3|^6.0",
"symfony/security-bundle": "^5.3|^6.0",
"symfony/http-foundation": "^5.3|^6.0",
"knpuniversity/oauth2-client-bundle": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"symfony/expression-language": "^5.3|^6.0",
"symfony/finder": "^5.3|^6.0",
"symfony/form": "^5.3|^6.0",
"symfony/stopwatch": "^5.3|^6.0",
"symfony/twig-bundle": "^5.3|^6.0",
"symfony/validator": "^5.3|^6.0",
"symfony/yaml": "^5.3|^6.0"
},
"autoload": {
"psr-4": {
"IDCI\\Bundle\\KeycloakSecurityBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"IDCI\\Bundle\\KeycloakSecurityBundle\\Tests\\": "Tests"
}
}
}