Merge with feature/2FA branch

feature/compliance-scale
jfrocha 2022-05-25 10:36:13 +02:00
commit d2d9f8f840
5 changed files with 6793 additions and 2 deletions

21
.editorconfig Normal file
View File

@ -0,0 +1,21 @@
root = true
[*]
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8
max_line_length = 88
[*.{yml,yaml,json,js,css,html}]
indent_size = 2
[*.{md,rst}]
trim_trailing_whitespace = false
# tabs 2 spaces for makefiles
[Makefile]
indent_style = tab
indent_size = 2

View File

@ -50,7 +50,8 @@
"laminas/laminas-permissions-rbac": "^3.0",
"laminas/laminas-log": "^2.11",
"laminas/laminas-i18n": "^2.9",
"laminas/laminas-dependency-plugin": "^2.0"
"laminas/laminas-dependency-plugin": "^2.0",
"robthree/twofactorauth": "^1.8"
},
"require-dev": {
"roave/security-advisories": "dev-master"

6767
composer.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -51,6 +51,8 @@ return array(
*/
'activeLanguages' => array('fr','en','de','nl'),
'instanceName' => 'Development', // for example a short URL or client name from ansible
'monarc' => array(
'ttl' => 20, // timeout
'salt' => '', // salt privé pour chiffrement pwd

View File

@ -15,6 +15,6 @@
},
"devDependencies": {
"grunt": "~1.5.3",
"grunt-cli": "~1.4.2"
"grunt-cli": "~1.4.3"
}
}