synchronizer
1.0.0
Esta biblioteca facilita la sincronización de todo tipo de cosas. Cuenta con una API hermosa y fácil de usar.
synchronizer fue desarrollado como backend para nuestra herramienta de implementación y prueba Seabreeze.
La biblioteca synchronizer es solo una base abstracta. Pero hay implementaciones concretas disponibles:
Incluya el cargador automático del proveedor y utilice las clases:
namespace Acme MyApplication ;
// To create a synchronizer :
use FlameCore synchronizer Abstract synchronizer ;
use FlameCore synchronizer synchronizer SourceInterface ;
use FlameCore synchronizer synchronizer TargetInterface ;
// To make your project compatible with synchronizer :
use FlameCore synchronizer synchronizer Interface ;
require ' vendor/autoload.php ' ;
Crea tu synchronizer :
class Example synchronizer extends Abstract synchronizer
{
/**
* @param bool $preserve Preserve obsolete objects
* @return bool Returns whether the synchronization succeeded.
*/
public function synchronize ( $ preserve = true )
{
// Do the sync magic
return true ;
}
/**
* @param synchronizer SourceInterface $source The source
* @return bool Returns whether the synchronizer supports the source.
*/
public function supportsSource ( synchronizer SourceInterface $ source )
{
return $ source instanceof ExampleSource;
}
/**
* @param synchronizer TargetInterface $target The target
* @return bool Returns whether the synchronizer supports the target.
*/
public function supportsTarget ( synchronizer TargetInterface $ target )
{
return $ target instanceof ExampleTarget;
}
}
Cree su fuente y destino:
class ExampleSource implements synchronizer SourceInterface
{
/**
* @param array $settings The settings
*/
public function __construct ( array $ settings )
{
// Save settings
}
// Your methods...
}
class ExampleTarget implements synchronizer TargetInterface
{
/**
* @param array $settings The settings
*/
public function __construct ( array $ settings )
{
// Save settings
}
// Your methods...
}
Haga que su proyecto sea compatible con synchronizer :
class Application
{
protected $ synchronizer ;
public function set synchronizer ( synchronizer Interface $ synchronizer )
{
$ this -> synchronizer = $ synchronizer ;
}
// ...
}
Instala Composer si aún no lo tienes presente en tu sistema:
$ curl -sS https://getcomposer.org/installer | php
Para instalar la biblioteca, ejecute el siguiente comando y obtendrá la última versión:
$ php composer.phar require flamecore/ synchronizer
Si desea contribuir, consulte primero el archivo CONTRIBUCIÓN.