Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/globaltradingtechnologies/ad-poller-bundle
Symfony2+ bundle for https://github.com/GlobalTradingTechnologies/ad-poller
https://github.com/globaltradingtechnologies/ad-poller-bundle
Last synced: 10 days ago
JSON representation
Symfony2+ bundle for https://github.com/GlobalTradingTechnologies/ad-poller
- Host: GitHub
- URL: https://github.com/globaltradingtechnologies/ad-poller-bundle
- Owner: GlobalTradingTechnologies
- License: mit
- Created: 2017-08-31T22:57:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-27T09:49:36.000Z (over 4 years ago)
- Last Synced: 2024-12-11T15:52:51.134Z (12 days ago)
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Active Directory Change Poller Symfony 2+ Bundle
================================================Integrates [gtt/ad-poller](https://github.com/GlobalTradingTechnologies/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:
```php
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:
```php
app/console doctrine:schema:create --dump-sql
```