phalcongelist / php-diff
A comprehensive library for generating differences between two hashable objects (strings or arrays).
Installs: 425 934
Dependents: 2
Suggesters: 0
Security: 0
Stars: 10
Watchers: 3
Forks: 189
Open Issues: 0
Requires
- php: >= 5.4
- ext-mbstring: *
Requires (Dev)
README
About this repo
This is a fork of Chris Boulton's Diff project.
Introduction
Phalcon Diff is a comprehensive library for generating differences between two hashable objects (strings or arrays). Generated differences can be rendered in all of the standard formats including:
- Unified
- Context
- Inline HTML
- Side by Side HTML
The logic behind the core of the diff engine (ie, the sequence matcher) is primarily based on the Python difflib package. The reason for doing so is primarily because of its high degree of accuracy.
Please write us if you have any feedback.
Get Started
Requirements
To run this library on your project, you need at least:
- PHP >= 5.4
- PHP mbstring extension
Installation
Install Composer in a common location or in your project:
$ curl -s http://getcomposer.org/installer | php
Create the composer.json
file as follows:
{ "require": { "phalcongelist/php-diff": "~2.0" } }
Run the composer installer:
$ php composer.phar install
Example Use
More complete documentation will be available shortly.
Todo
- Ability to ignore blank line changes
- 3 way diff support
- Performance optimizations
License
Phalcon Diff is open-sourced software licensed under the New BSD License.
© 2016, Phalcon Framework Team and contributors
© 2009-2016, Chris Boulton chris.boulton@interspire.com
All rights reserved.