├── .gitignore ├── README.md ├── assess.php ├── bin └── mysql-sync ├── composer.json ├── conf └── database.sample.json ├── phpstan.neon └── sync.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqonk/mysql-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqonk/mysql-sync/HEAD/README.md -------------------------------------------------------------------------------- /assess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqonk/mysql-sync/HEAD/assess.php -------------------------------------------------------------------------------- /bin/mysql-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqonk/mysql-sync/HEAD/bin/mysql-sync -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqonk/mysql-sync/HEAD/composer.json -------------------------------------------------------------------------------- /conf/database.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqonk/mysql-sync/HEAD/conf/database.sample.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqonk/mysql-sync/HEAD/phpstan.neon -------------------------------------------------------------------------------- /sync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sqonk/mysql-sync/HEAD/sync.php --------------------------------------------------------------------------------