Skip to content

Releases: QueenCityCodeFactory/LDAP

3.3.4

Choose a tag to compare

@darensipes darensipes released this 31 May 21:47
2de400f
Update LdapAuthenticate.php

If the options are a string get the constant values

3.3.3

Choose a tag to compare

@darensipes darensipes released this 31 May 20:07
1f65cab
Update LdapAuthenticate.php

Fixing exception issue

3.3.2

Choose a tag to compare

@darensipes darensipes released this 22 Mar 19:38
PSR Fixes

3.3.1

Choose a tag to compare

@darensipes darensipes released this 07 Oct 20:17
Allow for alternate domains to be checked

Extending options for ldap_search params

Choose a tag to compare

@jrble819 jrble819 released this 02 Oct 15:55
91d2c42

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

Choose a tag to compare

@darensipes darensipes released this 03 Oct 15:46
ldap_close is an alias of ldap_unbind. No need to call the same funct…

3.2.5

Choose a tag to compare

@darensipes darensipes released this 04 Oct 14:27
Adding the ability to toogle the error log on and off. Defaults to off.

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

Choose a tag to compare

@darensipes darensipes released this 04 Oct 14:15
* added bindDN support

* updated readme file

* updated readme file

* changed package name

* Revert "changed package name"

This reverts commit 94efdc49b6ced6d47c952e6a2ae6b18b3c7b292b.

3.2.3

Choose a tag to compare

@darensipes darensipes released this 21 Jul 12:52
Updating readme documentation

3.2.2: Update LdapAuthenticate.php

Choose a tag to compare

@darensipes darensipes released this 06 Jul 13:14
Removing unnecessary line of code.