synchronizer
1.0.0
Esta biblioteca facilita a sincronização de todos os tipos de coisas. Possui uma API bonita e fácil de usar.
synchronizer foi desenvolvido como back-end para nossa ferramenta de implantação e teste Seabreeze.
A biblioteca synchronizer é apenas uma base abstrata. Mas implementações concretas estão disponíveis:
Inclua o autoloader do fornecedor e use as classes:
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 ' ;
Crie seu 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;
}
}
Crie sua origem e 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...
}
Torne seu projeto compatível com synchronizer :
class Application
{
protected $ synchronizer ;
public function set synchronizer ( synchronizer Interface $ synchronizer )
{
$ this -> synchronizer = $ synchronizer ;
}
// ...
}
Instale o Composer se ainda não o tiver presente em seu sistema:
$ curl -sS https://getcomposer.org/installer | php
Para instalar a biblioteca, execute o seguinte comando e você obterá a versão mais recente:
$ php composer.phar require flamecore/ synchronizer
Se você quiser contribuir, consulte primeiro o arquivo CONTRIBUTING.