https://github.com/informaticauco/simplesamlphp-module-authchain
SimpleSAMLphp Chained Auth Module
https://github.com/informaticauco/simplesamlphp-module-authchain
simplesamlphp simplesamlphp-module
Last synced: 9 months ago
JSON representation
SimpleSAMLphp Chained Auth Module
- Host: GitHub
- URL: https://github.com/informaticauco/simplesamlphp-module-authchain
- Owner: InformaticaUCO
- License: other
- Created: 2018-11-03T15:48:04.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-07T20:24:12.000Z (almost 2 years ago)
- Last Synced: 2024-04-08T22:40:58.272Z (almost 2 years ago)
- Topics: simplesamlphp, simplesamlphp-module
- Language: PHP
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SimpleSAMLphp Module UCOFilter
This module try to identify an user with multiple AuthSources in chain.
## Requirements
* PHP>=5.5
## Installation
Installation can be as easy as executing:
```bash
bash$ composer require informaticauco/simplesamlphp-module-authchain
```
## Usage
Edit `config/authsources.php` and add the next _authsource_:
```php
['as1', 'as2'],
];
```
_AuthSources_ defined in sources section must support `array function login(string $username, string $password)` method or will be ignored. The first AuthSource to identify the user will be used.