feat(altcha): add altcha validation layer to login
Some checks are pending
Cadoles/hydra-sql/pipeline/pr-develop Build started...

This commit is contained in:
2025-03-24 17:20:17 +01:00
parent 1cb5ae6bc3
commit 12523398f6
51 changed files with 2417 additions and 1137 deletions

3
tools/php-cs-fixer/.php-cs-fixer.dist.php Normal file → Executable file
View File

@ -5,8 +5,6 @@ $finder = PhpCsFixer\Finder::create()
->name('*.php')
;
// TODO: Définir les règles de style communes
// spécifiques au projet
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
@ -22,6 +20,7 @@ return (new PhpCsFixer\Config())
'ternary_operator_spaces' => true,
'class_definition' => ['single_line' => true],
'whitespace_after_comma_in_array' => true,
'trailing_comma_in_multiline' => true,
// phpdoc
'phpdoc_add_missing_param_annotation' => ['only_untyped' => true],