2017 © Pedro PelĂĄez
 

cakephp-plugin auth0

Auth0 Authenticate object for CakePHP 3.x

image

jsoftb/auth0

Auth0 Authenticate object for CakePHP 3.x

  • Wednesday, August 3, 2016
  • by neojoda
  • Repository
  • 2 Watchers
  • 1 Stars
  • 494 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 8 % Grown

The README.md

Auth0

Auth0 Authenticate Object for Cakephp 3.x, (*1)

More reference about auth0 services: https://auth0.com/, (*2)

Installation

Add to your composer.json file "jsoftb/auth0": "dev-master" Run composer update, (*3)

Configuration

Open your AppController and inside the initialize function, (*4)

$this->loadComponent('Auth', [
            'authenticate' => [
                'Auth0.Auth0' => [
                                  'domain'        => '<domain_value_provided_by_auth0>',
                                  'client_id'     => '<client_id_value_provided_by_auth0>',
                                  'client_secret' => '<client_secret_value_provided_by_auth0>',
                                  'redirect_uri'  => '<redirect_uri_value_provided_by_auth0>'
                ]
            ],
]);

Follow the instructions about how to set up the login page in Auth0, (*5)

The Versions

03/08 2016

dev-master

9999999-dev

Auth0 Authenticate object for CakePHP 3.x

  Sources   Download

MIT

The Requires

 

The Development Requires

authentication cakephp auth oauth2 auth0