https://github.com/simplesamlphp/simplesamlphp-module-consentsimpleadmin
A SimpleSAMLphp module implementing a very simple user interface for managing consent.
https://github.com/simplesamlphp/simplesamlphp-module-consentsimpleadmin
Last synced: 9 months ago
JSON representation
A SimpleSAMLphp module implementing a very simple user interface for managing consent.
- Host: GitHub
- URL: https://github.com/simplesamlphp/simplesamlphp-module-consentsimpleadmin
- Owner: simplesamlphp
- License: lgpl-2.1
- Created: 2015-08-10T12:01:23.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-12-09T11:02:26.000Z (about 1 year ago)
- Last Synced: 2025-04-06T08:01:42.772Z (10 months ago)
- Language: PHP
- Size: 150 KB
- Stars: 6
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-consentsimpleadmin)
[](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-consentsimpleadmin/?branch=master)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-consentsimpleadmin)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-consentsimpleadmin)
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:
```shell
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](https://github.com/simplesamlphp/simplesamlphp-module-consentsimpleadmin/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:
```php
'module.enable' => [
'consentSimpleAdmin' => true,
…
],
```