simplesamlphp / simplesamlphp-module-consentsimpleadmin
A SimpleSAMLphp module implementing a very simple user interface for managing consent.
Installs: 15 223
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 9
Forks: 1
Open Issues: 0
Type:simplesamlphp-module
Requires
- php: >=7.4 || ^8.0
- simplesamlphp/composer-module-installer: ~1.3.2
- simplesamlphp/simplesamlphp: ^2.0.0-rc2
- simplesamlphp/simplesamlphp-module-consent: ~1.1
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-04 01:59:15 UTC
README
Consent Simple Admin module
A SimpleSAMLphp module implementing a very simple user interface for managing consent.
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-consentsimpleadmin: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, you need to do is to enable the consentSimpleAdmin module: in
config.php
, search for the module.enable
key and set consentSimpleAdmin
to true:
'module.enable' => [ 'consentSimpleAdmin' => true, … ],