https://github.com/simplesamlphp/simplesamlphp-module-metaedit
A SimpleSAMLphp module for metadata editing and registration.
https://github.com/simplesamlphp/simplesamlphp-module-metaedit
Last synced: 3 months ago
JSON representation
A SimpleSAMLphp module for metadata editing and registration.
- Host: GitHub
- URL: https://github.com/simplesamlphp/simplesamlphp-module-metaedit
- Owner: simplesamlphp
- License: lgpl-2.1
- Created: 2015-08-07T14:15:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-21T19:29:20.000Z (over 1 year ago)
- Last Synced: 2024-09-22T02:36:55.074Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 293 KB
- Stars: 3
- Watchers: 9
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-metaedit)
[](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-metaedit/?branch=master)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-metaedit)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-metaedit)
# Metaedit module
This module provides a web interface for very basic metadata editing and registration.
## Install
Once you have installed SimpleSAMLphp, installing this module is very simple. Just execute the following
command in the root of your SimpleSAMLphp installation:
```bash
vendor/bin/composer require simplesamlphp/simplesamlphp-module-metaedit
```
## Configuration
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:
```php
'module.enable' => [
'metaedit' => true,
…
],
```