Download the PHP package gozoro/ldap without Composer
On this page you can find all versions of the php package gozoro/ldap. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor gozoro
Package ldap
Short Description A simple PHP class for getting user data from Active Directory or other LDAP servers.
License MIT
Homepage https://github.com/gozoro/ldap
Package ldap
Short Description A simple PHP class for getting user data from Active Directory or other LDAP servers.
License MIT
Homepage https://github.com/gozoro/ldap
Please rate this library. Is it a good library?
Informations about the package ldap
ldap
A simple tool for getting user data from Active Directory.
Installation
Configuration
- username - service username to bind.
- password - service password to bind.
- hosts - array of ldap-server hosts.
- domainName - domain name, for example "example.net".
- dnsSuffixes - here you can specify additional dns suffixes for complex domains.
- timeout - sets timeout to the
LDAP_OPT_NETWORK_TIMEOUT
option. -
protocolVersion - sets protocol version (2 or 3) to
LDAP_OPT_PROTOCOL_VERSION
option. By default version: 3. - beforeConnect - the event handler function for example
function(Ldap $ldap){ ... }
. - afterConnect - the event handler function for example
function(Ldap $ldap){ ... }
. - beforeClose - the event handler function for example
function(Ldap $ldap){ ... }
. - afterClose - the event handler function for example
function(Ldap $ldap){ ... }
. - beforeSearch - the event handler function for example
function(Ldap $ldap){ ... }
. -
afterSearch - the event handler function for example
function(Ldap $ldap){ ... }
. - starttls - start TLS after connect to LDAP-server.
- SASL - here you can set SASL (Simple Authentication and Security Layer) mechanism. For example:
GSSAPI
,DIGEST-MD5
, etc. By default - empty string (SALS is disabled).
Popular SASL mechanisms
- NTLM - an NT LAN Manager authentication mechanism.
- GSSAPI - The Generic Security Service Application Program Interface is an application programming interface for programs to access security services. It is used for Kerberos V5 authentication via the GSSAPI.
- DIGEST-MD5 - Digest access authentication
- etc
Usage
Usage with SASL
All versions of ldap with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.5.9
The package gozoro/ldap contains the following files
Loading the files please wait ....