feat: encrypted user passwords

This commit is contained in:
Björn Fromme
2025-04-24 12:26:42 +02:00
parent 5fe88fc0f2
commit fb6665668b
16 changed files with 292 additions and 79 deletions
+9
View File
@@ -5,6 +5,7 @@
# https://symfony.com/doc/current/best_practices.html#use-parameters-for-application-configuration
parameters:
travel_info_base_url: '%env(APP_TRAVEL_INFO_BASE_URL)%'
path_to_keys: '%kernel.project_dir%/config/secret'
services:
# default configuration for services in *this* file
@@ -51,3 +52,11 @@ services:
- name: knp_menu.menu_builder
method: createMainMenu
alias: main
App\Command\GenerateKeysCommand:
arguments:
$path: '%path_to_keys%'
App\Security\Crypt:
arguments:
$path: '%path_to_keys%'