Releases: QueenCityCodeFactory/LDAP
Releases · QueenCityCodeFactory/LDAP
3.3.4
3.3.3
Update LdapAuthenticate.php Fixing exception issue
3.3.2
PSR Fixes
3.3.1
Allow for alternate domains to be checked
Extending options for ldap_search params
This release adds additional search and search return attributes options for ldap_search. This allows much more granular configuration of the LDAP search filter and return attributes options (for cases where memberof might not be returned by default or you want to limit the attributes returned)
New Config Options
Ldap.search
New options in your Ldap config array in app.php include the ability to use a closure for the ldap filter string in order to customize the search parameters.Ldap.searchAttributes
A new config variable called searchAttributes is now available to control the list of LDAP attributes returned by the ldap_search command. This change allows for better support of non-AD LDAP directories that may not return all attributes by default (i.e. OpenLDAP doesn't return the memberof attribute default, so you could set 'searchAttributes' => ['*', 'memberof'] . When not set, the searchAttributes option will default to *3.2.6
ldap_close is an alias of ldap_unbind. No need to call the same funct…
3.2.5
Adding the ability to toogle the error log on and off. Defaults to off.
3.2.4: add possibility to configure a bindDN (#5)
* added bindDN support * updated readme file * updated readme file * changed package name * Revert "changed package name" This reverts commit 94efdc49b6ced6d47c952e6a2ae6b18b3c7b292b.
3.2.3
Updating readme documentation
3.2.2: Update LdapAuthenticate.php
Removing unnecessary line of code.