123456789101112131415161718192021222324252627282930313233343536373839 |
- security:
-
- password_hashers:
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
-
- providers:
- users_in_memory: { memory: null }
- firewalls:
- dev:
- pattern: ^/(_(profiler|wdt)|css|images|js)/
- security: false
- main:
- lazy: true
- provider: users_in_memory
-
-
-
-
-
-
- access_control:
-
-
- when@test:
- security:
- password_hashers:
-
-
-
-
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
- algorithm: auto
- cost: 4
- time_cost: 3
- memory_cost: 10
|