https://github.com/simplesamlphp/simplesamlphp-module-ldap
Module that provides authentication against LDAP stores
https://github.com/simplesamlphp/simplesamlphp-module-ldap
Last synced: 3 months ago
JSON representation
Module that provides authentication against LDAP stores
- Host: GitHub
- URL: https://github.com/simplesamlphp/simplesamlphp-module-ldap
- Owner: simplesamlphp
- License: lgpl-2.1
- Created: 2019-03-14T15:10:57.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-14T13:53:35.000Z (11 months ago)
- Last Synced: 2025-03-30T19:11:37.262Z (10 months ago)
- Language: PHP
- Size: 338 KB
- Stars: 4
- Watchers: 5
- Forks: 14
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LDAP Module

[](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-ldap)
[](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-ldap/?branch=master)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-ldap)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-ldap)
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:
```bash
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](https://github.com/simplesamlphp/simplesamlphp-module-ldap/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:
```php
'module.enable' => [
'ldap' => true,
…
],
```