2019-10-20 14:35:19 +02:00
|
|
|
# config/packages/test/security.yaml
|
|
|
|
security:
|
2019-11-08 21:15:21 +01:00
|
|
|
|
|
|
|
# Disable password hashing during testing. This speeds up tests a lot
|
2022-08-14 17:09:57 +02:00
|
|
|
password_hashers:
|
|
|
|
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'plaintext'
|
2019-11-08 21:15:21 +01:00
|
|
|
|
2019-10-20 14:35:19 +02:00
|
|
|
firewalls:
|
|
|
|
# replace 'main' by the name of your own firewall
|
|
|
|
main:
|
2022-08-14 17:09:57 +02:00
|
|
|
entry_point: http_basic
|
2019-10-20 14:35:19 +02:00
|
|
|
http_basic: ~
|