123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- security:
-
- password_hashers:
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
-
- providers:
-
- app_user_provider:
- entity:
- class: App\Entity\User
- property: email
- firewalls:
- dev:
- pattern: ^/(_(profiler|wdt)|css|images|js)/
- security: false
- main:
- pattern: ^/
- lazy: true
- provider: app_user_provider
- login_link:
- check_route: login_check
- signature_properties: ['id', 'email']
- entry_point: App\Security\CustomEntryPoint
- logout:
- path: app_logout
- target: /login
- remember_me:
- secret: '%kernel.secret%'
- path: /
-
-
-
-
-
-
- access_control:
-
-
- - { path: ^/login, roles: PUBLIC_ACCESS }
- - { path: ^/sent, roles: PUBLIC_ACCESS }
- - { path: ^/, roles: ROLE_USER }
- when@test:
- security:
- password_hashers:
-
-
-
-
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
- algorithm: auto
- cost: 4
- time_cost: 3
- memory_cost: 10
|