chore(deps): update dependency phpunit/phpunit to v10 (#104)

* chore(deps): update dependency phpunit/phpunit to v10

Signed-off-by: Renovate Bot <bot@renovateapp.com>

* Updated phpunit.xml

---------

Signed-off-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ismo Vuorinen <ismo.vuorinen@vincit.fi>
This commit is contained in:
renovate[bot]
2023-03-10 00:52:50 +02:00
committed by GitHub
parent efbdb3ed8b
commit 697b134f65
2 changed files with 12 additions and 16 deletions

View File

@@ -23,7 +23,7 @@
"require-dev": {
"ergebnis/composer-normalize": "2.30.2",
"phpstan/phpstan": "1.10.6",
"phpunit/phpunit": "9.6.5",
"phpunit/phpunit": "10.0.15",
"roave/security-advisories": "dev-latest"
},
"autoload": {

View File

@@ -1,17 +1,13 @@
<?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="vendor/autoload.php"
colors="true"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
</phpunit>