gtt / ad-poller-bundle
Bundle integration of gtt/ad-poller component into Symfony2 ecosystem
Installs: 37
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 0
Type:symfony-bundle
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: 2024-11-06 09:55:40 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