A Library to perform recursive 3-way merge algorithm on associative arrays, written in PHP.
This library is built to perform a recursive 3-way merge algorithm. It takes 3 parameters which are arrays representing base array, local array and remote array. It compares each of these entities with other arrays line-wise.
If only one out of remote or local is updated out of these 3, the final revision will have all the unchanged data in it along with the update data from the update array (Either remote or local). If more than one array is updated on the same line, it'd throw a ConflictException
.
The library can be installed via composer.
{
"name": "myorg/mylib",
"description": "A library depending on 3-way merge",
"require": {
"relaxedws/merge": "dev-master",
}
}
After installation, we can perform a merge the following way:
<?php
namespace testing;
require __DIR__ ."/vendor/autoload.php";
use Relaxed\Merge\ThreeWayMerge;
$original = [
'keyA' => [
0 => [
'keyB' => 'This is honey
like this',
'keyC' => 'This is however, not apple',
],
1 => [
'keyB' => 'This is milk',
'keyC' => 'This is mango',
],
2 => 'a little sugar',
]
];
$local = [
'keyA' => [
0 => [
'keyB' => 'This is honeybb
like ti',
'keyC' => 'This is however, not apple',
],
1 => [
'keyB' => 'This is milky milky',
'keyC' => 'This is mango',
],
2 => 'a little coffee'
]
];
$remote = [
'keyA' => [
0 => [
'keyB' => 'This is honey
like this',
'keyC' => 'This is however, not apple',
],
1 => [
'keyB' => 'This is milk',
'keyC' => 'This is changed because of remote',
],
2 => 'a little sugar',
]
];
$merge = new ThreeWayMerge();
$updated_revision = $merge->performMerge($original, $local, $remote);
We welcome anyone to use, test, or contribute back to this project. We have extensive test coverage, but as we all know there's always bugs in software. Please file issues or pull requests with your comments or suggestions.