Releases: jfcherng/php-diff
Releases · jfcherng/php-diff
6.11.3
- refactor: utilize PHP 7.4 typed properties (only for
final
classes since it's a BC breaking change) - refactor: utilize PHP 7.4 array spread operator
- refactor: utilize PHP 7.4 arrow funciton
- refactor: utilize PHP 7.4 null coalescing assignment
- chore: update deps
6.11.2
6.11.1
6.11.0
-
chore: bump min PHP requirement to 7.4
- Version
6.10
and before requires PHP >= 7.1 - Note that PHP 7.3 is no longer supported by the PHP official: https://www.php.net/supported-versions.php
- Version
-
refactor: use PHP new features
6.10.0
-
chore: add
liip/rmt
as a dev dependency -
chore: allow
phan/phan
^4
-
feat: add methods to get diff statistics
$differ->getStatistics(); DiffHelper::getStatistics();
both return something like
[ 'inserted' => 0, 'deleted' => 0, 'unmodified' => 0, 'changedRatio' => 0.0, ]
-
fix: deprecated method in
.php_cs