Skip to content

Symfony Bundle for Facebook interactions' management

Notifications You must be signed in to change notification settings

adespresso/FacebookBundle

Repository files navigation

AdEspresso Facebook Bundle

Build Status Coverage Status Scrutinizer Code Quality Total Downloads

Symfony Bundle for Facebook interactions' management.

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require adespresso/facebook-bundle

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 2: Enable the Bundle

Then, enable the bundle by adding the following line in the app/AppKernel.php file of your project:

// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new AdEspresso\FacebookBundle\FacebookBundle(),
        );
    }
}

Step 3: Configure the Bundle

# app/config/config.yml
facebook:
    sdk:
        config:
            app_id: 'your_id'
            app_secret: 'your_secret'
    ads:
        config:
            app_id: 'your_id'
            app_secret: 'your_secret'

Documentation

The source of the documentation is stored in the Resources/doc/ folder in this bundle:

Read the Documentation for master

About

Symfony Bundle for Facebook interactions' management

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages