-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump phpunit add test for attributes
- Loading branch information
1 parent
293af94
commit 2d0f12f
Showing
26 changed files
with
290 additions
and
295 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,10 @@ | |
{ | ||
"name": "Thomas Ploch", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Mattia Basone", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
|
@@ -32,11 +36,12 @@ | |
}, | ||
"require-dev": { | ||
"roave/security-advisories": "dev-latest", | ||
"phpunit/phpunit": "^9.4.2", | ||
"phpunit/phpunit": "^10.5", | ||
"phpbench/phpbench": "1.0.0-alpha2", | ||
"vlucas/phpdotenv": "~2.4", | ||
"symfony/serializer": "^6.4|^7.0", | ||
"doctrine/annotations": "^1.11" | ||
"doctrine/annotations": "^1.11", | ||
"rector/rector": "^1.2" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
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,14 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="test/bootstrap.php" colors="true"> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
<directory suffix=".php">integrations/</directory> | ||
</include> | ||
</coverage> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="test/bootstrap.php" colors="true"> | ||
<testsuites> | ||
<testsuite name="FlixTech Avro Serializer Test Suite"> | ||
<directory>test/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
<directory suffix=".php">integrations/</directory> | ||
</include> | ||
</source> | ||
</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
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
Oops, something went wrong.