Skip to content

Releases: QueenCityCodeFactory/LDAP

3.3.4

31 May 21:47
2de400f
Compare
Choose a tag to compare
Update LdapAuthenticate.php

If the options are a string get the constant values

3.3.3

31 May 20:07
1f65cab
Compare
Choose a tag to compare
Update LdapAuthenticate.php

Fixing exception issue

3.3.2

22 Mar 19:38
Compare
Choose a tag to compare
PSR Fixes

3.3.1

07 Oct 20:17
Compare
Choose a tag to compare
Allow for alternate domains to be checked

Extending options for ldap_search params

02 Oct 15:55
91d2c42
Compare
Choose a tag to compare

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

03 Oct 15:46
Compare
Choose a tag to compare
ldap_close is an alias of ldap_unbind. No need to call the same funct…

3.2.5

04 Oct 14:27
Compare
Choose a tag to compare
Adding the ability to toogle the error log on and off. Defaults to off.

3.2.4: add possibility to configure a bindDN (#5)

04 Oct 14:15
Compare
Choose a tag to compare
* added bindDN support

* updated readme file

* updated readme file

* changed package name

* Revert "changed package name"

This reverts commit 94efdc49b6ced6d47c952e6a2ae6b18b3c7b292b.

3.2.3

21 Jul 12:52
Compare
Choose a tag to compare
Updating readme documentation

3.2.2: Update LdapAuthenticate.php

06 Jul 13:14
Compare
Choose a tag to compare
Removing unnecessary line of code.