An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

![Build Status](https://github.com/simplesamlphp/simplesamlphp-module-consentsimpleadmin/actions/workflows/php.yml/badge.svg)
[![Coverage Status](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-consentsimpleadmin/branch/master/graph/badge.svg)](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-consentsimpleadmin)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-consentsimpleadmin/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-consentsimpleadmin/?branch=master)
[![Type Coverage](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-consentsimpleadmin/coverage.svg)](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-consentsimpleadmin)
[![Psalm Level](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-consentsimpleadmin/level.svg)](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,

],
```