zendframework/zend-ldap
Zend LDAP provides PHP tools for LDAP directory operations like binding, searching, and modifying entries. This repository was abandoned on 2019-12-31 and has moved to laminas/laminas-ldap.
See the following documents for more information on the attributes contained within the RootDSE for a given LDAP server.
use Zend\Ldap\Ldap;
$options = [/* ... */];
$ldap = new Ldap($options);
$rootdse = $ldap->getRootDse();
$serverType = $rootdse->getServerType();
use Zend\Ldap\Ldap;
$options = [/* ... */];
$ldap = new Ldap($options);
$schema = $ldap->getSchema();
$classes = $schema->getObjectClasses();
Due to restrictions on Microsoft ActiveDirectory servers regarding the number of entries returned by generic search routines and due to the structure of the ActiveDirectory schema repository, schema browsing is currently not available for Microsoft ActiveDirectory servers.
How can I help you explore Laravel packages today?