├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .travis.yml ├── README.rst ├── Text ├── Diff.php ├── Diff │ ├── Engine │ │ ├── native.php │ │ ├── shell.php │ │ ├── string.php │ │ └── xdiff.php │ ├── Mapped.php │ ├── Renderer.php │ ├── Renderer │ │ ├── context.php │ │ ├── inline.php │ │ └── unified.php │ └── ThreeWay.php └── Diff3.php ├── composer.json ├── docs └── examples │ ├── 1.txt │ ├── 2.txt │ └── diff.php ├── package.xml └── tests ├── .cvsignore ├── 1.txt ├── 2.txt ├── 3.txt ├── 4.txt ├── 5.txt ├── 6.txt ├── context.patch ├── context.phpt ├── context2.phpt ├── diff.phpt ├── diff_shell.phpt ├── inline.phpt ├── inline2.phpt ├── pear_bug12740.phpt ├── pear_bug4879.phpt ├── pear_bug4982.phpt ├── pear_bug6251.phpt ├── pear_bug6428.phpt ├── pear_bug7839.phpt ├── string.phpt ├── unified.patch ├── unified.phpt ├── unified2.patch ├── unified2.phpt └── xdiff.phpt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.phar 3 | /dist/ 4 | /README.html 5 | /vendor/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/README.rst -------------------------------------------------------------------------------- /Text/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff.php -------------------------------------------------------------------------------- /Text/Diff/Engine/native.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Engine/native.php -------------------------------------------------------------------------------- /Text/Diff/Engine/shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Engine/shell.php -------------------------------------------------------------------------------- /Text/Diff/Engine/string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Engine/string.php -------------------------------------------------------------------------------- /Text/Diff/Engine/xdiff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Engine/xdiff.php -------------------------------------------------------------------------------- /Text/Diff/Mapped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Mapped.php -------------------------------------------------------------------------------- /Text/Diff/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Renderer.php -------------------------------------------------------------------------------- /Text/Diff/Renderer/context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Renderer/context.php -------------------------------------------------------------------------------- /Text/Diff/Renderer/inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Renderer/inline.php -------------------------------------------------------------------------------- /Text/Diff/Renderer/unified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/Renderer/unified.php -------------------------------------------------------------------------------- /Text/Diff/ThreeWay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff/ThreeWay.php -------------------------------------------------------------------------------- /Text/Diff3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/Text/Diff3.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/composer.json -------------------------------------------------------------------------------- /docs/examples/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/docs/examples/1.txt -------------------------------------------------------------------------------- /docs/examples/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/docs/examples/2.txt -------------------------------------------------------------------------------- /docs/examples/diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/docs/examples/diff.php -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/package.xml -------------------------------------------------------------------------------- /tests/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/.cvsignore -------------------------------------------------------------------------------- /tests/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/1.txt -------------------------------------------------------------------------------- /tests/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/2.txt -------------------------------------------------------------------------------- /tests/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/3.txt -------------------------------------------------------------------------------- /tests/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/4.txt -------------------------------------------------------------------------------- /tests/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/5.txt -------------------------------------------------------------------------------- /tests/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/6.txt -------------------------------------------------------------------------------- /tests/context.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/context.patch -------------------------------------------------------------------------------- /tests/context.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/context.phpt -------------------------------------------------------------------------------- /tests/context2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/context2.phpt -------------------------------------------------------------------------------- /tests/diff.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/diff.phpt -------------------------------------------------------------------------------- /tests/diff_shell.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/diff_shell.phpt -------------------------------------------------------------------------------- /tests/inline.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/inline.phpt -------------------------------------------------------------------------------- /tests/inline2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/inline2.phpt -------------------------------------------------------------------------------- /tests/pear_bug12740.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/pear_bug12740.phpt -------------------------------------------------------------------------------- /tests/pear_bug4879.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/pear_bug4879.phpt -------------------------------------------------------------------------------- /tests/pear_bug4982.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/pear_bug4982.phpt -------------------------------------------------------------------------------- /tests/pear_bug6251.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/pear_bug6251.phpt -------------------------------------------------------------------------------- /tests/pear_bug6428.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/pear_bug6428.phpt -------------------------------------------------------------------------------- /tests/pear_bug7839.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/pear_bug7839.phpt -------------------------------------------------------------------------------- /tests/string.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/string.phpt -------------------------------------------------------------------------------- /tests/unified.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/unified.patch -------------------------------------------------------------------------------- /tests/unified.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/unified.phpt -------------------------------------------------------------------------------- /tests/unified2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/unified2.patch -------------------------------------------------------------------------------- /tests/unified2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/unified2.phpt -------------------------------------------------------------------------------- /tests/xdiff.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pear/Text_Diff/HEAD/tests/xdiff.phpt --------------------------------------------------------------------------------