simplesamlphp / simplesamlphp-module-authorize

This module provides a user authorization filter based on attribute matching
GNU Lesser General Public License v2.1
5 stars 6 forks source link

Authorize

Build Status Coverage Status Scrutinizer Code Quality Type Coverage Psalm Level

Install

Install with composer

    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:

    'module.enable' => [
        'authorize' => true,
        …
    ],