Skip to content

Commit 9d77cb8

Browse files
authored
Document how to enable with SSP2
1 parent 3941eb6 commit 9d77cb8

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,30 @@
55
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-ldap/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-ldap/?branch=master)
66
[![Type Coverage](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-ldap/coverage.svg)](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-ldap)
77
[![Psalm Level](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-ldap/level.svg)](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-ldap)
8+
9+
This module provides authproc-filters and authentication sources for interaction
10+
with LDAP directories.
11+
12+
## Installation
13+
14+
Once you have installed SimpleSAMLphp, installing this module is very simple.
15+
Just execute the following command in the root of your SimpleSAMLphp
16+
installation:
17+
18+
```bash
19+
composer.phar require simplesamlphp/simplesamlphp-module-ldap:dev-master
20+
```
21+
22+
where `dev-master` instructs Composer to install the `master` branch from the
23+
Git repository. See the [releases][releases]
24+
available if you want to use a stable version of the module.
25+
26+
Next thing you need to do is to enable the module: in `config.php`,
27+
search for the `module.enable` key and set `ldap` to true:
28+
29+
```php
30+
'module.enable' => [
31+
'ldap' => true,
32+
33+
],
34+
```

0 commit comments

Comments
 (0)