Skip to content

fidilly/php-project-lvl2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gendiff

Maintainability Test Coverage Build Status

Gendiff is a library for comparing json or yaml file formats. This library calculates and shows the difference between files.

Installation

Gendiff can be installed globally with Composer or included in a project or library.

Global installation:

composer global require fidilly/gendiff

example:

asciicast

Include:

composer require fidilly/gendiff
use function Differ\Gendiff\gendiff;

gendiff($pathToFile1, $pathToFile2, $format);

Usage via terminal

Help call examples:

gendiff -h
gendiff --help

Gendiff supports multiple output formats.

examples:

gendiff <file1> <file2> ###default 'pretty' format
gendiff --format pretty <file1> <file2>
gendiff --format plain <file1> <file2>
gendiff --format json <file1> <file2>

Usage examples

asciicast

asciicast

asciicast

asciicast

asciicast