https://github.com/simplesamlphp/simplesamlphp-module-cas
https://github.com/simplesamlphp/simplesamlphp-module-cas
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/simplesamlphp/simplesamlphp-module-cas
- Owner: simplesamlphp
- License: lgpl-2.1
- Created: 2019-05-10T09:38:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-14T21:28:02.000Z (9 months ago)
- Last Synced: 2025-04-14T21:32:01.347Z (9 months ago)
- Language: PHP
- Size: 83 KB
- Stars: 4
- Watchers: 5
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CAS module

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