This module provides a web interface for very basic metadata editing and registration.
Once you have installed SimpleSAMLphp, installing this module is very simple. Just execute the following command in the root of your SimpleSAMLphp installation:
vendor/bin/composer require simplesamlphp/simplesamlphp-module-metaedit
Next thing you need to do is to enable the module: in config.php
,
search for the module.enable
key and set metaedit
to true:
'module.enable' => [
'metaedit' => true,
…
],