wunc / Adldap2

A PHP LDAP Library for Active Directory Manipulation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

![AdLDAP 2 Banner] (https://github.com/adldap2/adldap2/blob/master/adldap2-banner.jpg)

Build Status Scrutinizer Code Quality SensioLabsInsight Total Downloads Latest Stable Version License

Originally written by Scott Barnett and Richard Hyland. Adopted by the community.

Description

Adldap2 is a tested PHP class library that provides LDAP authentication and Active Directory management tools.

Index

Note: Documentation is incomplete as Adldap is currently in the upgrade process to version 5.0.0. They will be fully featured and complete in the coming weeks.

Requirements

To use Adldap2, your sever must support:

Installation

Adldap2 has moved to a composer based installation. If you'd like to use Adldap without an auto-loader, you'll have to require the files inside the project src/ directory yourself.

Insert Adldap into your composer.json file:

"adldap2/adldap2": "5.0.*"

Run composer update

You're good to go!

Need to test an LDAP connection?

If you need to test something with access to an LDAP server, the generous folks at Georgia Tech have you covered.

Use the following configuration:

$config = array(
    'account_suffix' => "@gatech.edu",

    'domain_controllers' => array("whitepages.gatech.edu"),

    'base_dn' => 'dc=whitepages,dc=gatech,dc=edu',

    'admin_username' => '',

    'admin_password' => '',
);

$ad = new Adldap($config);

However while useful for basic testing, the queryable data only includes user data, so if you're looking for testing with any other information or functionality such as modification, you'll have to use you're own server.

About

A PHP LDAP Library for Active Directory Manipulation

License:GNU Lesser General Public License v2.1


Languages

Language:PHP 100.0%