dev-master
9999999-devAuth0 Authenticate object for CakePHP 3.x
MIT
The Requires
- php >=5.4.16
- auth0/auth0-php ~3.0
- cakephp/cakephp ~3.1
The Development Requires
authentication cakephp auth oauth2 auth0
Auth0 Authenticate object for CakePHP 3.x
Auth0 Authenticate Object for Cakephp 3.x, (*1)
More reference about auth0 services: https://auth0.com/, (*2)
Add to your composer.json file "jsoftb/auth0": "dev-master" Run composer update, (*3)
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)
Auth0 Authenticate object for CakePHP 3.x
MIT
authentication cakephp auth oauth2 auth0