8000 [Ldap] Add security LdapUser and provider (4.4) by hiddewie · Pull Request #12423 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Ldap] Add security LdapUser and provider (4.4) #12423

New is 8000 sue

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

Merged
merged 1 commit into from
Oct 5, 2019
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
8 changes: 7 additions & 1 deletion security/ldap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Symfony provides different means to work with an LDAP server.
The Security component offers:

* The ``ldap`` :doc:`user provider</security/user_provider>`, using the
:class:`Symfony\\Component\\Security\\Core\\User\\LdapUserProvider`
:class:`Symfony\\Component\\Ldap\\Security\\LdapUserProvider`
class. Like all other user providers, it can be used with any
authentication provider.

Expand All @@ -34,6 +34,12 @@ This means that the following scenarios will work:
* Loading user information from an LDAP server, while using another
authentication strategy (token-based pre-authentication, for example).

.. deprecated:: 4.4

The class ``Symfony\Component\Security\Core\User\LdapUserProvider``
has been deprecated in Symfony 4.4. Use the class
``Symfony\Component\Ldap\Security\LdapUserProvider`` instead.

Installation
------------

Expand Down
0