-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Laravel 11 support was added * `tests.yml` fix * Update Dockerfile * Update CHANGELOG.md --------- Co-authored-by: Dmitry Peichev <[email protected]> Co-authored-by: Eldario <[email protected]>
- Loading branch information
1 parent
51e1e32
commit 7e36eba
Showing
5 changed files
with
52 additions
and
41 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
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,28 +1,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" | ||
bootstrap="./tests/bootstrap.php" | ||
colors="true" | ||
stopOnFailure="true" | ||
cacheDirectory=".phpunit.cache" | ||
requireCoverageMetadata="true"> | ||
<testsuites> | ||
<testsuite name="Unit"> | ||
<directory>./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage includeUncoveredFiles="false"> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
<exclude> | ||
<directory>./vendor</directory> | ||
</exclude> | ||
<report> | ||
<clover outputFile="./coverage/clover.xml"/> | ||
<html outputDirectory="./coverage/html"/> | ||
<text outputFile="php://stdout"/> | ||
<xml outputDirectory="./coverage/xml"/> | ||
</report> | ||
</coverage> | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" | ||
bootstrap="./tests/bootstrap.php" colors="true"> | ||
<testsuites> | ||
<testsuite name="Unit"> | ||
<directory>./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage includeUncoveredFiles="false"> | ||
<report> | ||
<clover outputFile="./coverage/clover.xml"/> | ||
<html outputDirectory="./coverage/html"/> | ||
<text outputFile="php://stdout"/> | ||
<xml outputDirectory="./coverage/xml"/> | ||
</report> | ||
</coverage> | ||
<source> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
<exclude> | ||
<directory>./vendor</directory> | ||
<directory>./tests</directory> | ||
</exclude> | ||
</source> | ||
</phpunit> |