simplesamlphp / simplesamlphp-module-subjectidattrs
Module implementing SAML V2.0 Subject Identifier Attributes Profile
Installs: 112
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:simplesamlphp-module
Requires
- php: >=7.4 || ^8.0
- simplesamlphp/assert: ~0.3.0
- simplesamlphp/composer-module-installer: ~1.1
- simplesamlphp/simplesamlphp: ^2.0.0-beta.11
Requires (Dev)
This package is auto-updated.
Last update: 2022-07-24 13:51:43 UTC
README
This module provides authproc-filters for releasing the attributes defined in the SAML V2.0 Subject Identifier Attributes Profile.
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-subjectidattrs: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 subjectidattrs
to true:
'module.enable' => [ 'subjectidattrs' => true, … ],