123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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
-
-
-
-
-
-
-
-
- access_control:
-
-
- role_hierarchy:
- ROLE_ADMIN: ROLE_AUTHOR, ROLE_MODERATOR, ROLE_CONTACT
- when@test:
- security:
- password_hashers:
-
-
-
-
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
- algorithm: auto
- cost: 4
- time_cost: 3
- memory_cost: 10
|