simplesamlphp/simplesamlphp-module-ldap

A module that provides authentication against LDAP stores

Package info

github.com/simplesamlphp/simplesamlphp-module-ldap

Type:simplesamlphp-module

pkg:composer/simplesamlphp/simplesamlphp-module-ldap

Statistics

Installs: 6 595 385

Dependents: 9

Suggesters: 1

Stars: 4

Open Issues: 5

v2.5.2 2026-03-10 21:41 UTC

Suggests

None

Provides

None

Conflicts

None

Replaces

None

LGPL-2.1-or-later d17c699bda6c55390be80aee7c9ea10f97bb3d1b

  • Olav Morken <olavmrk.woop@gmail.com>
  • Tim van Dijen <tvdijen.woop@gmail.com>

ldapsimplesamlphp

This package is auto-updated.

Last update: 2026-06-29 06:30:29 UTC


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,
 …
 ],