We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5259ad7 commit 54c2ebeCopy full SHA for 54c2ebe
config/packages/test/security.yaml
@@ -1,6 +1,11 @@
1
# this configuration simplifies testing URLs protected by the security mechanism
2
# See https://symfony.com/doc/current/cookbook/testing/http_authentication.html
3
security:
4
+ encoders:
5
+ # to make tests much faster, BCrypt cost is changed to its minimum allowed value (4)
6
+ # See https://symfony.com/doc/current/reference/configuration/security.html#using-the-bcrypt-password-encoder
7
+ App\Entity\User: { algorithm: bcrypt, cost: 4 }
8
+
9
firewalls:
10
main:
11
http_basic: ~
0 commit comments