imarc / devour
An SQL database synchronizer
Installs: 6 363
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 2
Open Issues: 0
Requires (Dev)
- dotink/jin: ^3.3
- phpstan/phpstan: ^0.11.7
- phpunit/phpunit: ^8.1
- dev-master
- 2.2.0
- 2.1.1
- 2.1.0
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.6.0
- 1.5.1
- 1.5.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.1
- 1.0.0
- dev-feature/scheduling
- dev-bugfix/xxx-chunking
- dev-update/context
- dev-update/additional-settings
- dev-update/synchronizer-track-force
- dev-update/add-analyzer
- dev-update/configure-chunk-limit
This package is auto-updated.
Last update: 2025-03-26 00:26:18 UTC
README
$sync = new Devour\Synchronizer(); $table = new Devour\Mapping('events'); $table->addKey('id') $table->setSource('evmas'); $table->setParam('tracker_limit', date('Y-m-d', strtotime('-1 year'))); $table->addJoin('vendor', 'firm', ['vendor = firm.id']); $table->addField('id', 'evmas.control'); $table->addFilter('highlights', 'evmas.majordesc'); $table->addWhere("exclude_from_catalog != 'Y'"); $table->addWhere("end_date >= '{{ tracker_limit }}'"); $sync->addTable($table); $sync->run('events')