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
Requires
- php: ^8.3
- ext-ldap: *
- simplesamlphp/assert: ^2.0
- simplesamlphp/composer-module-installer: ^1.7
- simplesamlphp/simplesamlphp: ^2.5@dev
- symfony/ldap: ^7.4
Requires (Dev)
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>
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, … ],
