Skip to content

asamarcos/laravel-ldap-auth

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel LDAP Auth

Simple Laravel auth driver for LDAP.

Allows to connect into a LDAPv3.0 server to check user's credentials.

Install

Add service provider to file config/app.php

LucasVscn\LDAP\ServiceProvider::class,

Change your config/auth.php to work with 'ldap' driver:

'providers' => [

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

About

Laravel auth driver for LDAP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%