├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── demo ├── README.md └── index.php └── src ├── HtmlDiffAdvanced.php └── HtmlDiffAdvancedInterface.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | vendor 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkalkbrenner/php-htmldiff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkalkbrenner/php-htmldiff/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkalkbrenner/php-htmldiff/HEAD/composer.json -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- 1 | Just write the code as shown in php file and enjoy. 2 | -------------------------------------------------------------------------------- /demo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkalkbrenner/php-htmldiff/HEAD/demo/index.php -------------------------------------------------------------------------------- /src/HtmlDiffAdvanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkalkbrenner/php-htmldiff/HEAD/src/HtmlDiffAdvanced.php -------------------------------------------------------------------------------- /src/HtmlDiffAdvancedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkalkbrenner/php-htmldiff/HEAD/src/HtmlDiffAdvancedInterface.php --------------------------------------------------------------------------------