simplesamlphp/simplesamlphp-module-ldap

A module that provides authentication against LDAP stores

Installs: 5 199 958

Dependents: 9

Suggesters: 1

Security: 0

Stars: 4

Watchers: 7

Forks: 8

Open Issues: 5

Type:simplesamlphp-module


README

Build Status Coverage Status Scrutinizer Code Quality Type Coverage Psalm Level

This module provides authproc-filters and authentication sources for interaction with LDAP directories.

Installation

Once you have installed SimpleSAMLphp, installing this module is very simple. Just execute the following command in the root of your SimpleSAMLphp installation:

composer.phar require simplesamlphp/simplesamlphp-module-ldap:dev-master

where dev-master instructs Composer to install the master branch from the Git repository. See the releases available if you want to use a stable version of the module.

Next thing you need to do is to enable the module: in config.php, search for the module.enable key and set ldap to true:

    'module.enable' => [
         'ldap' => true,
         …
    ],