https://github.com/simplesamlphp/simplesamlphp-module-authorize
This module provides a user authorization filter based on attribute matching
https://github.com/simplesamlphp/simplesamlphp-module-authorize
Last synced: 7 months ago
JSON representation
This module provides a user authorization filter based on attribute matching
- Host: GitHub
- URL: https://github.com/simplesamlphp/simplesamlphp-module-authorize
- Owner: simplesamlphp
- License: lgpl-2.1
- Created: 2019-05-24T14:35:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-18T11:36:08.000Z (about 1 year ago)
- Last Synced: 2025-03-31T18:21:18.336Z (10 months ago)
- Language: PHP
- Size: 184 KB
- Stars: 5
- Watchers: 5
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Authorize

[](https://codecov.io/gh/simplesamlphp/simplesamlphp-module-authorize)
[](https://scrutinizer-ci.com/g/simplesamlphp/simplesamlphp-module-authorize/?branch=master)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-authorize)
[](https://shepherd.dev/github/simplesamlphp/simplesamlphp-module-authorize)
## Install
Install with composer
```bash
vendor/bin/composer require simplesamlphp/simplesamlphp-module-authorize
```
## Configuration
Next thing you need to do is to enable the module: in `config.php`,
search for the `module.enable` key and set `authorize` to true:
```php
'module.enable' => [
'authorize' => true,
…
],
```