Driky / Adldap2

A PHP LDAP Package for humans.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Adldap2

Working with LDAP doesn't need to be hard.

Adldap2 is a PHP package that provides LDAP authentication and directory management tools using the Active Record pattern.

Index

Installation

Requirements

To use Adldap2, your server must support:

  • PHP 5.5.9 or greater
  • PHP LDAP Extension
  • An LDAP Server

Note: OpenLDAP support is experimental, success may vary.

Optional Requirements

Note: Adldap makes use of ldap_modify_batch() for executing modifications to LDAP records. Your server must be on PHP >= 5.5.10 || >= 5.6.0 to make modifications.

If your AD server requires SSL, your server must support the following libraries:

Installing

Adldap2 utilizes composer for installation.

Run the following command in the root directory of your project:

composer require adldap2/adldap2

Note: If you're upgrading from an earlier release, please take a look at the release notes.

Implementations

Versioning

Adldap2 is versioned under the Semantic Versioning guidelines as much as possible.

Releases will be numbered with the following format:

<major>.<minor>.<patch>

And constructed with the following guidelines:

  • Breaking backward compatibility bumps the major and resets the minor and patch.
  • New additions without breaking backward compatibility bumps the minor and resets the patch.
  • Bug fixes and misc changes bumps the patch.

Minor versions are not maintained individually, and you're encouraged to upgrade through to the next minor version.

Major versions are maintained individually through separate branches.

About

A PHP LDAP Package for humans.

License:MIT License


Languages

Language:PHP 100.0%