Cake Social is a plugin of the CakePHP 2.x that helps you connect your applications with Software-as-a-Service (SaaS) providers such as Facebook and Twitter.
CakePHP v2.x
Composer
Ensure require is present in composer.json. This will install the plugin into Plugin/CakeSocial:
{
"require": {
"misfrog/cake-social": "*"
}
}
You need to enable the plugin in your app/Config/bootstrap.php file:
`CakePlugin::load('CakeSocial', array('routes' => true, 'bootstrap' => true));
An example project is available in the showcase repository.
TODO