Ldap database and ActiveRecord for Yii 2
This extension provides the LDAP integration for the Yii framework 2.0. It includes basic querying/search support and also implements the ActiveRecord pattern that allows you to store active records in Active Directory or OpenLDAP.
Requirements
To use yii2-ldap, your sever must support:
PHP LDAP Extension
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist chrmorandi/yii2-ldap
or add
"chrmorandi/yii2-ldap": "*"
to the require section of your composer.json.
Configuration
return [
//....
'components' => [
'ldap' => [
'class' => 'chrmorandi\ldap\Connection',
// Mandatory Configuration Options
'dc' => [
'192.168.1.1',
'ad.com'
],
'baseDn' => 'dc=ad,dc=com',
'username' => 'administrator@ad.com',
'password' => 'password',
// Optional Configuration Options
'port' => 389,
'followReferrals' => false,
'useTLS' => true,
],
]
];