dev-master
9999999-dev
The Requires
Sentinel LDAP is a Cartalyst Sentinel
addon and lets you authenticate your users using LDAP (Active Directory)., (*2)
The package requires PHP 5.4+ and comes bundled with a Laravel 4 Facade and a Service Provider to simplify the optional framework integration and follows the FIG standard PSR-4 to ensure a high level of interoperability between shared PHP code. The package also requires that you have php5-ldap extension installed in your server., (*3)
Sentinel LDAP is installable with Composer. Follow the instructions below, (*4)
"roshangautam/sentinel-ldap": "dev-master",, (*5)
Thats it. Have fun., (*6)
'ldap' => [ 'host' => 'ldaps://yourcompany.com:3269', // This is the ldap host preferable a Global Catalog if you have multiple ldap servers. Also prepend :port if you are using a url instead of hostname (php5-ldap requirement as it will ignore the port parameter while using URL) 'port' => 389, // port number while using hostname instead of url 'search_user_dn' => 'CN=Some User,OU=SomeGroup,OU=SomeGroup,DC=yourcompany,DC=com', // search user - ask your ldap adminstrator for this 'search_base' => 'DC=yourcompany,DC=com', // usually root of your domain 'login_attribute' => 'sAMAccountName', // currently unused 'search_password' => 'yourpassword', // password for the search user - ask your ldap administrator ],