2017 © Pedro Peláez
 

library l5-openldap-auth

An openldap auth driver for Laravel 5.

image

kcchung/l5-openldap-auth

An openldap auth driver for Laravel 5.

  • Thursday, May 17, 2018
  • by ken8203
  • Repository
  • 1 Watchers
  • 6 Stars
  • 299 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 2 Versions
  • 1 % Grown

The README.md

Laravel 5 OpenLDAP Auth

An OpenLDAP authentication driver for Laravel 5., (*1)

Installation

Add to composer.json and install with composer install / composer update., (*2)

{
  require: {
    "kcchung/l5-openldap-auth": "dev-master"
  }
}

Add to Laravel

Open your config/app.php file and add the service provider to the providers array., (*3)

kcchung\L5OpenldapAuth\LdapAuthServiceProvider::class

Update your config/auth.php to use ldap driver., (*4)

'driver' => 'ldap'

Configuration

Manually create a config/ldap.php file and add the following:, (*5)

 'ldaps://example.com',
    'rdn'       => 'ou=System,dc=example,dc=com', // rdn used by the user configured below, optional
    'version'   => '3', // LDAP protocol version (2 or 3)
    
    'basedn'    => 'ou=People,dc=example,dc=com', // basedn for users
    'login_attribute' => 'uid', // login attributes for users
];

?>

Extending

If you wish to add your own functions, just modify any of the classes., (*6)

About

Created by Kuan-Chien Chung(kcchung), (*7)

The Versions

17/05 2018

dev-master

9999999-dev

An openldap auth driver for Laravel 5.

  Sources   Download

MIT

The Requires

 

by kcchung

laravel auth openldap

19/01 2016

dev-cscc

dev-cscc

An openldap auth driver for Laravel 5.

  Sources   Download

MIT

The Requires

 

by kcchung

laravel auth openldap