-
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 #21 from AngryBytes/feat/php81
PHP 8.1 support, dependency upgrades
- Loading branch information
Showing
18 changed files
with
199 additions
and
431 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
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 |
---|---|---|
@@ -1,8 +1,7 @@ | ||
parameters: | ||
reportUnmatchedIgnoredErrors: false | ||
ignoreErrors: | ||
- | ||
message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#" | ||
count: 1 | ||
path: src/AngryBytes/Hash/Hasher/Password.php | ||
|
||
# @todo: Remove once we drop PHP 7.4 | ||
reportUnmatchedIgnoredErrors: false | ||
ignoreErrors: | ||
- message: "#^Strict comparison using \\=\\=\\= between string and false will always evaluate to false\\.$#" | ||
count: 1 | ||
path: src/AngryBytes/Hash/Hasher/Password.php |
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 |
---|---|---|
@@ -1,10 +1,19 @@ | ||
<?xml version="1.0"?> | ||
<phpunit | ||
bootstrap="./tests/bootstrap.php" | ||
colors="true" | ||
> | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" | ||
bootstrap="./vendor/autoload.php" | ||
colors="true" | ||
> | ||
|
||
<testsuite name="Hasher"> | ||
<directory>./tests/AngryBytes/Hash/Test</directory> | ||
</testsuite> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
</include> | ||
</coverage> | ||
|
||
<testsuite name="Hasher"> | ||
<directory>./tests/AngryBytes/Hash/Test</directory> | ||
</testsuite> | ||
|
||
</phpunit> |
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
Oops, something went wrong.