gtt/ad-poller-bundle

Bundle integration of gtt/ad-poller component into Symfony2 ecosystem

1.1.0 2020-07-27 09:46 UTC

This package is not auto-updated.

Last update: 2024-04-24 07:15:19 UTC


README

Integrates gtt/ad-poller into Symfony2+ ecosystem

Installation

Bundle should be installed via composer

composer require gtt/ad-poller-bundle

After that you need to register the bundle inside your application kernel:

public function registerBundles()
{
    $bundles = array(
        // ...
        new Gtt\Bundle\AdPollerBundle\AdPollerBundle(),
    );
}

Database setup

Component requires database to persist poll task state. It is possible to generate schema using doctrine console utils:

app/console doctrine:schema:create --dump-sql