alex-rad/laravel-ldap-credentials

Extends Database and Eloquent User Authentication Providers (Laravel framework) to validate credentials (email and password) in LDAP
354 1
Install
composer require alex-rad/laravel-ldap-credentials
Latest Version:v1.0.1
PHP:>=5.5
License:MIT
Last Updated:Oct 30, 2015
Links: GitHub  ·  Packagist
Maintainer: Alexander Radchenko

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

  1. Run composer require "alex-rad/laravel-ldap-credentials" to install package.

  2. Add LdapCredentials Service Provider to the config/app.php configuration file.

    'providers' => [
        ...
        LdapCredentials\Auth\AuthServiceProvider::class,
        ...
    ],
    
  3. Add LDAP settings to the config/auth.php configuration file.

    /*
    |--------------------------------------------------------------------------
    | LDAP Settings
    |--------------------------------------------------------------------------
    |
    | For "databaseLdapCredentials" or "eloquentLdapCredentials" user 
    | authentication drivers.
    |
    */
    
    'ldap' => [
        'host' => env('LDAP_HOST', 'ldap.server.com'),
        'port' => env('LDAP_PORT', 389),
        'user' => env('LDAP_USER', NULL),
        'password' => env('LDAP_PASSWORD', NULL),
        'base' => env('LDAP_BASE', ''),
    ],
    
  4. Add LDAP settings to the environment .ENV configuration file (optional).

    LDAP_HOST=ldap.company.com
    
  5. Switch User Authentication Driver to databaseLdapCredentials or eloquentLdapCredentials driver in config/auth.php configuration file.

    'driver' => 'eloquentLdapCredentials',
    

    or

    'driver' => 'databaseLdapCredentials',
    
  6. Remove reset password by email and new user registration functions from application.

Related Packages

sroutier/eloquent-ldap

A Laravel package that first tries to log the user against the internal database...

8,720 20
sarav/laravel-multiauth

A Simple Laravel Package for handling multiple authentication

31,092 50
lab404/laravel-auth-checker

Laravel Auth Checker allows you to log users authentication, devices authenticat...

168,057 223
fahmiardi/laravel-mongodb-user-provider

User Providers handling for Laravel 5.3 using Mongodb (Moloquent)

242 1
wells/l4-ldap-ntlm

An LDAP/Active Directory/NTLM authentication driver for Laravel 4.

3,929 25