LDAP authentication driver for Laravel 5
Add to composer.json and install with composer install
{
require: {
"aparticka/laravel-auth-ldap": "dev-master"
}
}
or use composer require aparticka/laravel-auth-ldap
Modify your config/app.php file and add the service provider to the providers array.
'LaravelAuthLdap\AuthLdapServiceProvider'
Copy the configuration files to your app.
php artisan vendor:publish --provider="LaravelAuthLdap\AuthLdapServiceProvider"
Update your config/auth.php to use the ldap driver.
'driver' => 'ldap'
There are two configuration files included, one for general options - auth-ldap.php and one for the included LDAP provider adLDAP - adldap.php.
providerarray- secondary provider to be used for authdriverstring- the driver to usemust_existbool- if the user must exist in the provider to log in
convert_fieldsarray- maps dynamic properties on theAuthenticatableuser objectcredentials_fieldsarray- the field names used for user credentialsusernamestring- the authentication field name used for the usernamepasswordstring- the authentication field name used for the password
username_fieldstring- the LDAP field used for the username
Configuration variables used in creation of the adLDAP client. Documentation
If you wish to extend any of the classes, just add your own service provider and bind your custom implementations to the provided interfaces. The provided implementations were designed to be extended so you can use them as a base to extend from if you wish.
laravel-auth-ldap is distributed under the terms of the MIT license.
Created by Adam Particka (aparticka)
