1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Use sebastian/diff

This commit is contained in:
Brown 2019-05-17 11:26:44 -04:00
parent ebe97c871e
commit 0f3385ce95
2 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,6 @@
"nikic/php-parser": "^4.0.2 || ^4.1",
"openlss/lib-array2xml": "^0.0.10||^0.5.1",
"ocramius/package-versions": "^1.2",
"php-cs-fixer/diff": "^1.2",
"composer/xdebug-handler": "^1.1",
"felixfbecker/language-server-protocol": "^1.2",
"felixfbecker/advanced-json-rpc": "^3.0.3",
@ -24,7 +23,8 @@
"symfony/console": "^3.3||^4.0",
"amphp/amp": "^2.1",
"amphp/byte-stream": "^1.5",
"phpmyadmin/sql-parser": "^5.0"
"phpmyadmin/sql-parser": "^5.0",
"sebastian/diff": "^3.0"
},
"bin": ["psalm", "psalter", "psalm-language-server", "psalm-plugin"],
"autoload": {

View File

@ -1091,8 +1091,8 @@ class Analyzer
if ($dry_run) {
echo $file_path . ':' . "\n";
$differ = new \PhpCsFixer\Diff\v2_0\Differ(
new \PhpCsFixer\Diff\GeckoPackages\DiffOutputBuilder\UnifiedDiffOutputBuilder([
$differ = new \SebastianBergmann\Diff\Differ(
new \SebastianBergmann\Diff\Output\StrictUnifiedDiffOutputBuilder([
'fromFile' => 'Original',
'toFile' => 'New',
])