8000 Update the security reference because user providers are no longer mandatory by javiereguiluz · Pull Request #9828 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Update the security reference because user providers are no longer mandatory #9828

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

< 8000 /details>
Merged
merged 1 commit into from
May 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion reference/configuration/security.rst
5203
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Each part will be explained in the next section.
time_cost: 2 # Number of iterations
threads: 2 # Number of parallel threads

providers: # Required
providers:
# Examples:
my_in_memory_provider:
memory:
Expand Down Expand Up @@ -301,6 +301,9 @@ Each part will be explained in the next section.
ROLE_ADMIN: [ROLE_ORGANIZER, ROLE_USER]
ROLE_SUPERADMIN: [ROLE_ADMIN]

.. versionadded:: 4.1
The ``providers`` option is optional starting from Symfony 4.1.

.. _reference-security-firewall-form-login:

Form Login Configuration
Expand Down
0