clear01 / rsync-lib
Fork of a simple PHP rsync wrapper library by Alberto Fernandez
1.0.0-alpha2
2015-03-02 21:53 UTC
Requires
- php: >=5.3.3
Requires (Dev)
- phpunit/phpunit: ~4.1
This package is not auto-updated.
Last update: 2025-03-07 21:47:54 UTC
README
A simple PHP rsync wrapper library
Installation
Require it in composer:
composer require albertofem/rsync-lib dev-master
Install it:
composer update albertofem/rsync-lib
If you want to run the tests:
./vendor/bin/phpunit
Usage
Basic usage example:
<?php use AFM\Rsync\Rsync; $origin = __DIR__; $target = "/target/dir/"; $rsync = new Rsync; $rsync->sync($origin, $target);
Change behaviour:
<?php use AFM\Rsync\Rsync; $origin = __DIR__; $target = "/target/dir"; $config = array( 'delete_from_target' => true, 'ssh' => array( 'host' => myhost.com, 'public_key' => '/my/key.pub' ) ); $rsync = new Rsync($config); // change options programatically $rsync->setFollowSymlinks(false); $rsync->sync($origin, $target);