itlized/social

Social Bundle For Symfony based on HybridAuth

v2.1.1.2 2014-07-25 17:54 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:39:10 UTC


README

Installation:

Add bundle to your composer.json file

// composer.json

{
    "require": {
		// ...
        "itlized/social": "~2.1"
    }
}

Download the bundle using Composer

$ php composer.phar update itlized/social

Add bundle to your application kernel

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Itlized\Bundle\SocialBundle\ItlizedSocialBundle(),
        // ...
    );
}

Add routing.yml from the bundle to your app

// app/config/routing.yml

itlized_social:
    resource: "@ItlizedSocialBundle/Resources/config/routing.yml"
    prefix:   /

Config bundle parameters for your app

// app/config/config.yml

parameters:
    itlized_social:
        routing: itlized_social_endpoint
        providers:
            Facebook:
                enabled: true
                keys:
                    id: xxx61753xxx
                    secret: xxxfb1578dbb194dxxx

Links