gtt / ad-poller-bundle
Bundle integration of gtt/ad-poller component into Symfony2 ecosystem
Package info
github.com/GlobalTradingTechnologies/ad-poller-bundle
Type:symfony-bundle
pkg:composer/gtt/ad-poller-bundle
1.1.0
2020-07-27 09:46 UTC
Requires
- php: >=5.5.9|^7.0
- gtt/ad-poller: ^0.2
- symfony/framework-bundle: ^2.3|^3.0
This package is not auto-updated.
Last update: 2026-03-11 16:16:55 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