niif / simplesamlphp-module-attributelimit
Installs: 252
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 8
Forks: 2
Open Issues: 1
Type:simplesamlphp-module
Requires
Requires (Dev)
- phpunit/phpunit: ~3.7
- simplesamlphp/simplesamlphp: 1.14
This package is auto-updated.
Last update: 2024-10-16 17:06:51 UTC
README
Install
composer require niif/simplesamlphp-module-attributelimit
Usage
This module is a forked version of SimpleSAMLphp core:AttributeLimit
. It adds the functionality of specifying bilateral attribute relations in addition to the attribute rules defined in the peer's metadata. You can both specify SP entityIDs where you send some additional attributes (bilateralSPs) and special attributes to send to some SPs (bilateralAttributes).
Example configuration:
$config = array(
'class' => 'niif:AttributeLimit',
'bilateralSPs' => array(
'entityid1' => array(
'attr1',
'attr2'
),
'entityid2' => array(
'attr1',
'attr2'
),
),
'bilateralAttributes' => array(
'attr1' => array(
'entityid1',
'entityid2'
),
'attr2' => array(
'entityid1',
'entityid2'
),
),
'attribute_x', 'attribute_y',
)