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: 18 days 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2026-03-09T12:11:47.000Z (20 days ago)
- Last Synced: 2026-03-09T16:58:23.825Z (20 days ago)
- Language: PHP
- Size: 235 KB
- Stars: 5
- Watchers: 4
- Forks: 10
- 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,
…
],
```