Download the PHP package alex-rad/laravel-ldap-credentials without Composer
On this page you can find all versions of the php package alex-rad/laravel-ldap-credentials. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download alex-rad/laravel-ldap-credentials
More information about alex-rad/laravel-ldap-credentials
Files in alex-rad/laravel-ldap-credentials
Package laravel-ldap-credentials
Short Description Extends Database and Eloquent User Authentication Providers (Laravel framework) to validate credentials (email and password) in LDAP
License MIT
Homepage https://github.com/AlexRadch/Laravel-LdapCredentials
Informations about the package laravel-ldap-credentials
Laravel-LdapCredentials
Extends Database and Eloquent User Authentication Drivers (Laravel framework) to validate credentials (email and password) in LDAP.
Password field should be removed from Users table and model.
It does not support to reset password by email and new user registration.
Installation
-
Run
composer require "alex-rad/laravel-ldap-credentials"
to install package. -
Add LdapCredentials Service Provider to the
config/app.php
configuration file. -
Add LDAP settings to the
config/auth.php
configuration file. -
Add LDAP settings to the environment
.ENV
configuration file (optional). -
Switch User Authentication Driver to
databaseLdapCredentials
oreloquentLdapCredentials
driver inconfig/auth.php
configuration file.or
- Remove reset password by email and new user registration functions from application.