forked from chrisboulton/php-diff
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from JBlond/82-upgrade-php-version
upgrade required PHP version to 7.3
- Loading branch information
Showing
19 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
} | ||
], | ||
"require": { | ||
"php": ">=7.2", | ||
"php": ">=7.3", | ||
"ext-mbstring": "*", | ||
"ext-pcre": "*" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
* A comprehensive library for comparing two strings and generating the differences between them in multiple formats. | ||
* (unified, side by side, inline, HTML, etc.) | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond | ||
* @author Chris Boulton <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
/** | ||
* Sequence matcher helper functions for Diff | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff | ||
* @author Mario Brandt <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
/** | ||
* Merged diff generator for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Text | ||
* @author Ferry Cools <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
/** | ||
* Side by Side HTML diff generator for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Html | ||
* @author Chris Boulton <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
/** | ||
* Unified HTML diff generator for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Html | ||
* @author Chris Boulton <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
/** | ||
* Base renderer for rendering diffs for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Html | ||
* @author Chris Boulton <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
/** | ||
* Abstract class for the main renderer in PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer | ||
* @author Mario Brandt <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
/** | ||
* Sub rendering class interface for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Html | ||
* @author Ferry Cools <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
/** | ||
* Context diff generator for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Text | ||
* @author Chris Boulton <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
/** | ||
* Inline diff generator for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Text | ||
* @author Ferry Cools <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
/** | ||
* Unified diff generator for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Text | ||
* @author Chris Boulton <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
/** | ||
* Unified diff generator for PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff\Renderer\Text | ||
* @author Mario Brandt <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
/** | ||
* Sequence matcher for Diff | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff | ||
* @author Chris Boulton <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
* | ||
* @see similar_text() | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package jblond\Diff | ||
* @author Chris Boulton <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
/** | ||
* PHPUnit Test for the main renderer of PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package Tests\Diff\Renderer | ||
* @author Mario Brandt <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
/** | ||
* PHPUnit Test for the main renderer of PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package Tests\Diff | ||
* @author Mario Brandt <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
/** | ||
* PHPUnit Test for the Similarity class of PHP DiffLib. | ||
* | ||
* PHP version 7.2 or greater | ||
* PHP version 7.3 or greater | ||
* | ||
* @package Tests\Diff | ||
* @author Ferry Cools <[email protected]> | ||
|