2017 © Pedro Peláez
 

library laravel-ldap-auth

LDAP driver for Laravel auth.

image

lucasvscn/laravel-ldap-auth

LDAP driver for Laravel auth.

  • Wednesday, May 3, 2017
  • by lucasvscn
  • Repository
  • 1 Watchers
  • 1 Stars
  • 58 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 5 % Grown

The README.md

Laravel LDAP Auth

Simple Laravel auth driver for LDAP., (*1)

Allows to connect into a LDAPv3.0 server to check user's credentials., (*2)

Install

Add service provider to file config/app.php, (*3)

LucasVscn\LDAP\ServiceProvider::class,

Change your config/auth.php to work with 'ldap' driver:, (*4)

'providers' => [

    'users' => [
        'driver' => 'ldap',
        'model' => App\User::class,
        'host' => '0.0.0.0',
        'domain' => 'yourdomain.com.br',
    ],
],

The Versions

03/05 2017

dev-master

9999999-dev https://github.com/lucasvscn/laravel-ldap-auth

LDAP driver for Laravel auth.

  Sources   Download

MIT

The Requires

 

by Lucas Vasconcelos

laravel auth ldap