core23/facebook-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

This bundle provides a block service for using the Facebook API inside the sonata-project.

Installs: 95

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Type:symfony-bundle

1.2.0 2020-06-06 13:55 UTC

README

Latest Stable Version Latest Unstable Version License

Total Downloads Monthly Downloads Daily Downloads

Continuous Integration Code Coverage

This bundle adds some basic auth mechanisum for using the Facebook API inside symfony.

Installation

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

composer require core23/facebook-bundle

Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in config/bundles.php file of your project:

// config/bundles.php

return [
    // ...
    Core23\FacebookBundle\Core23FacebookBundle::class => ['all' => true],
];

Configure the Bundle

Create a configuration file called core23_facebook.yaml:

# config/packages/core23_facebook.yaml

core23_facebook:
    api:
        field:       'app_id'
        class:       'app_secret'
        permissions: ['public_profile', 'user_likes']

License

This bundle is under the MIT license.