├── .editorconfig ├── .scrutinizer.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── FilesComparer.php ├── FilesSynchronizer.php ├── FilesSynchronizerFactory.php └── Location ├── FilesLocationInterface.php ├── FilesSourceInterface.php ├── FilesTargetInterface.php ├── FlysystemFilesLocation.php └── LocalFilesLocation.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/.editorconfig -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/composer.json -------------------------------------------------------------------------------- /src/FilesComparer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/src/FilesComparer.php -------------------------------------------------------------------------------- /src/FilesSynchronizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/src/FilesSynchronizer.php -------------------------------------------------------------------------------- /src/FilesSynchronizerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/src/FilesSynchronizerFactory.php -------------------------------------------------------------------------------- /src/Location/FilesLocationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/src/Location/FilesLocationInterface.php -------------------------------------------------------------------------------- /src/Location/FilesSourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/src/Location/FilesSourceInterface.php -------------------------------------------------------------------------------- /src/Location/FilesTargetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/src/Location/FilesTargetInterface.php -------------------------------------------------------------------------------- /src/Location/FlysystemFilesLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/src/Location/FlysystemFilesLocation.php -------------------------------------------------------------------------------- /src/Location/LocalFilesLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondtruth/synchronizer-files/HEAD/src/Location/LocalFilesLocation.php --------------------------------------------------------------------------------