takashi-moripower / cake-opauth
CakeOpauth plugin for CakePHP
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.4.16
- cakephp/cakephp: ~3.0
- opauth/facebook: *
- opauth/google: *
- opauth/opauth: *
- opauth/twitter: *
Requires (Dev)
This package is not auto-updated.
Last update: 2025-02-12 00:38:23 UTC
README
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require takashi-moripower/cake-opauth
app/comfig/app.php
... 'opauth' => [ 'security_salt' => 'SECURITY_SALT', // 'path' => '/opauth/auth/', // path to this plugin 'callback_url' => '/opauth/auth/callback/', // path to return after opauth 'Strategy' => [ 'Twitter' => [ 'key' => 'YOUR_KEY', 'secret' => 'YOUR_SECRET' ], 'Facebook' => [ 'app_id' => 'YOUR_APPID', 'app_secret' => 'YOUR_APPSECRET' ] ] ] ...