Description
This package (chrisboulton/php-diff) is abandoned and not supported for several years. There's 167 other packages that forked from this root repo, but they are ugly. Most of them doesn't contain any changes. Many other contain questionable changes. A small number of forks contains 1-2 fixes or addition of some functionality necessary to authors. But all these forks are very low quality. Most of forks (as of original repo) doesn't use namespaces which makes difficulties if you want to use Composer's autoloader. There is a few repos that adds namespaces, but they seems to be abandoned too. They mostly are missing "Issues" section, so nobody can report a bug. Code quality is not good enough (at least for me). No unit-tests, no docs, no UTF-8 support. And all forks are crashes with count(): Parameter must be an array or an object that implements Countable
when you making a diff for two arrays where one of them is empty. The error is in lib/Diff/SequenceMatcher.php
in setSeq1()
and setSeq2()
(need replace if($a == $this->a) {
to if($a === $this->a) {
). This is very simple bug, but nobody found it and fixed.
I've tried these packages:
- chrisboulton/php-diff -- no namespaces, no multi-byte encodings
- phpspec/php-diff -- fixed some bugs, possible added multi-byte encodings, but still not namespaces, no Issues section
- adaptivemedia/php-text-difference -- added namespaces, but no Issues section, no Composer package, dev-stability
- JBlond/php-diff -- looks like supported, has Issues section, but no namespaces...
Then I found a better alternative of all this misunderstanding -- it's sebastian/diff (https://github.com/sebastianbergmann/diff). It works little different, but it has much better code quality, actively maintaining, supported and the author is an authority in PHP world (he maintain PHPUnit). Actually previously it was a part of PHPUnit but then was factored out. So I recommend to use his package instead and forget about chrisboulton/php-diff and all its forks.