-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.44 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
{
"name": "mlukman/security-helper-bundle",
"version": "1.1.0",
"description": "A set of classes to simplify Symfony security",
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"doctrine/orm": "^2.8|^3.0",
"google/recaptcha": "^1.3",
"knpuniversity/oauth2-client-bundle": "^2.18",
"league/oauth2-facebook": "^2.2",
"league/oauth2-github": "^3.1",
"league/oauth2-google": "^4.0",
"stevenmaguire/oauth2-keycloak": "^5.1",
"symfony/console": "^6.1|^7.0",
"symfony/framework-bundle": "^6.1|^7.0",
"symfony/runtime": "^6.1|^7.0",
"symfony/security-bundle": "^6.1|^7.0",
"symfony/twig-bundle": "^6.1|^7.0"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"MLukman\\SecurityHelperBundle\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Muhammad Lukman Nasaruddin",
"email": "[email protected]"
}
],
"autoload-dev": {
"psr-4": {
"MLukman\\SecurityHelperBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/debug-bundle": "6.1.*",
"symfony/phpunit-bridge": "^6.1",
"symfony/yaml": "^6.1"
}
}