1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- security:
-
- password_hashers:
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
-
- providers:
-
- app_user_provider:
- entity:
- class: App\Entity\User
- property: username
- firewalls:
- dev:
- pattern: ^/(_(profiler|wdt)|css|images|js)/
- security: false
- main:
- lazy: true
- provider: app_user_provider
- form_login:
- login_path: app_login
- check_path: app_login
- enable_csrf: true
- logout:
- path: app_logout
-
-
- remember_me:
- secret: '%kernel.secret%'
-
-
-
-
-
-
-
-
-
-
-
- access_control:
-
-
- role_hierarchy:
- ROLE_ADMIN: ROLE_MODERATOR, ROLE_CONTACT
- ROLE_CONTACT: ROLE_AUTHOR
- when@test:
- security:
- password_hashers:
-
-
-
-
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
- algorithm: auto
- cost: 4
- time_cost: 3
- memory_cost: 10
|