security.yaml 593 B

1234567891011
  1. security:
  2. password_hashers:
  3. # By default, password hashers are resource intensive and take time. This is
  4. # important to generate secure password hashes. In tests however, secure hashes
  5. # are not important, waste resources and increase test times. The following
  6. # reduces the work factor to the lowest possible values.
  7. Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
  8. algorithm: auto
  9. cost: 4 # Lowest possible value for bcrypt
  10. time_cost: 3 # Lowest possible value for argon
  11. memory_cost: 10 # Lowest possible value for argon