uazgraduatecollege / cakephp-casauth
CAS Authentication wrapper for CakePHP 4.x using Apereo (formerly Jasig) phpCAS
Installs: 206
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=7.2
- apereo/phpcas: ^1.6
- cakephp/cakephp: ^4.0
This package is auto-updated.
Last update: 2025-04-04 21:33:39 UTC
README
Very basic CAS Authentication for CakePHP 4.
Installing via composer
Install into your project using composer. For existing applications you can add the following to your composer.json file:
"repositories": [ { "type": "git", "url": "https://github.com/uazgraduatecollege/cakephp-casauth.git" } ], "require": { "uazgraduatecollege/cakephp-casauth": "~2.0" }
And run php composer.phar update
Usage
Load the Cake AuthComponent, including CasAuth.Cas as an authenticator. For example:
$this->loadComponent('Auth'); $this->Auth->config( 'authenticate', [ 'CasAuth.Cas' => [ 'cas_host => 'cas.mydomain.com', 'cas_context => '/cas, 'client_service_name => 'https://clientapplication.otherdomain.com', ] ] );
Or combine the load and configuration into one step:
$this->loadComponent( 'Auth', [ 'authenticate' => [ 'CasAuth.Cas' => [ 'cas_host => 'cas.mydomain.com', 'cas_context => '/cas, 'client_service_name => 'https://clientapplication.otherdomain.com', ] ] ] );
Parameters
- cas_host is required.
- cas_context defaults to '' (an empty string)
- client_service_name (optional) defaults to
$_SERVER['SERVER_NAME']
- cas_port defaults to 443
- debug (optional) if true, then phpCAS will write debug info to your configured logger.
- cert_path (optional) if set, then phpCAS will use the specified CA certificate file to verify the CAS server
- curlopts (optional) key/value paired array of additional CURL parameters to pass through to phpCAS::setExtraCurlOption, e.g.
'curlopts' => [CURLOPT_PROXY => 'http://proxy:5543', CURLOPT_CRLF => true]
Note about parameter key changes
Prior to release 2.0.0, several parameter used different keys.
Release 2.0.0 updates apereo/phpcas
to use at least version 1.6, which contains breaking changes.
For better clarity, the previous parameter key names have been re-mapped to the new names, which
match variable names as used in the apereo/phpcas
example client usage.
hostname
changed tocas_host
port
changed tocas_port
uri
changed tocas_context
cakephp-casauth looks for input parameters using the old keys to try to remain backwards compatible. Your mileage may vary.
License
This project was forked from Glen Sawyer's cakephp-3-cas repository and retains the original Apache License version 2.0.