ebidtech / data-replicator
DataReplicator
Installs: 4 920
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 12
Forks: 0
Open Issues: 0
Requires
- php: >=5.3
- doctrine/dbal: ~2.4
Requires (Dev)
- jms/serializer: 0.14.0
- phpmd/phpmd: ~1.5.0
- phpunit/phpunit: ~4.0
- satooshi/php-coveralls: ~1.0
- squizlabs/php_codesniffer: ~1.5.0
This package is not auto-updated.
Last update: 2024-11-19 02:08:39 UTC
README
Utility for replicating data to another DB.
Requirements
- PHP >= 5.3
Installation
The recommended way to install is through composer.
Just create a composer.json
file for your project:
{ "require": { "ebidtech/data-replicator": "@stable" } }
Tip: browse ebidtech/data-replicator
page to choose a stable version to use, avoid the @stable
meta constraint.
And run these two commands to install it:
$ curl -sS https://getcomposer.org/installer | php
$ composer install
Now you can add the autoloader, and you will have access to the library:
<?php require 'vendor/autoload.php';
Usage
Have a look on tests as example.
Contributing
See CONTRIBUTING file.
Credits
- Ebidtech developer team, data-replicator
- All contributors
License
data-replicator library is released under the MIT License. See the bundled LICENSE file for details.