File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 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+ ```
You can’t perform that action at this time.
0 commit comments