2017 © Pedro Peláez
 

cakephp-plugin cas_authentication

CakePHP CAS Authentication

image

asaladino/cas_authentication

CakePHP CAS Authentication

  • Tuesday, January 20, 2015
  • by asaladino
  • Repository
  • 1 Watchers
  • 3 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

CakePHP CAS Authentication

Provides CAS authentication component for CakePHP applications., (*1)

Requirements

The master branch has the following requirements:, (*2)

  • CakePHP 2.2.0 or greater.
  • PHP 5.4.0 or greater.
  • Jasig phpCAS 1.3.0 or greater.

Installation

[Using Composer], (*3)

Add the plugin to your project's composer.json:, (*4)

{
  "require": {
    "asaladino/cas_authentication": "1.0.*"
  }
}

Because this plugin has the type cakephp-plugin set in it's own composer.json, composer knows to install it inside your /Plugin directory, rather than in the usual vendors file. It is recommended that you add /Plugin/CasAuthentication to your .gitignore file. (Why? read this.), (*5)

[Manual], (*6)

  • Download the CasAuthentication archive.
  • Unzip that download.
  • Rename the resulting folder to CasAuthentication
  • Then copy this folder into app/Plugin/

[Enable], (*7)

Add CakePlugin::loadAll(); to bootstrap.php then implement it in the controller., (*8)

class UsersController extends AppController {
    public $components = [
        'Auth' => [
            'authenticate' => [
                'CasAuthentication.Cas' => [
                    'hostname' => 'cas.server.com',
                    'uri' => '/cas/',
                    'debug' => LOGS . 'log-file.log',
                    'disbled' => false
                ]
            ]
        ]
    ];
}

The Versions

20/01 2015

1.0.x-dev

1.0.9999999.9999999-dev http://codingsimply.com/projects/cakephp-cas-auth-component

CakePHP CAS Authentication

  Sources   Download

MIT

The Requires

 

cakephp cas

20/01 2015

dev-master

9999999-dev http://codingsimply.com/projects/cakephp-cas-auth-component

CakePHP CAS Authentication

  Sources   Download

MIT

The Requires

 

cakephp cas

20/01 2015

v1.0

1.0.0.0 http://codingsimply.com/projects/cakephp-cas-auth-component

CakePHP CAS Authentication

  Sources   Download

MIT

The Requires

 

cakephp cas