dev-master
9999999-devSocial Bundle For Symfony based on HybridAuth
MIT
The Requires
by Michael Bui
Social Bundle For Symfony based on HybridAuth
``` js // composer.json, (*1)
{ "require": { // ... "itlized/social": "~2.1" } }, (*2)
### Download the bundle using Composer ``` bash $ php composer.phar update itlized/social
``` php // app/AppKernel.php, (*3)
public function registerBundles() { $bundles = array( // ... new Itlized\Bundle\SocialBundle\ItlizedSocialBundle(), // ... ); }, (*4)
### Add routing.yml from the bundle to your app ``` php // app/config/routing.yml itlized_social: resource: "@ItlizedSocialBundle/Resources/config/routing.yml" prefix: /
``` php // app/config/config.yml, (*5)
parameters: itlized_social: routing: itlized_social_endpoint providers: Facebook: enabled: true keys: id: xxx61753xxx secret: xxxfb1578dbb194dxxx, (*6)
```, (*7)
Social Bundle For Symfony based on HybridAuth
MIT