Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency phpunit/phpunit to v10 #72

Merged
merged 4 commits into from
Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"laminas/laminas-http": "^2.18",
"laminas/laminas-servicemanager": "^3.21.0",
"laminas/laminas-validator": "^2.30.1",
"phpunit/phpunit": "^9.6.10",
"phpunit/phpunit": "^10.2.6",
"psalm/plugin-phpunit": "^0.18.4",
"psr/http-message": "^2.0",
"vimeo/psalm": "^5.13.1"
Expand Down
583 changes: 230 additions & 353 deletions composer.lock

Large diffs are not rendered by default.

16 changes: 10 additions & 6 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<?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" backupGlobals="true" colors="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="laminas-feed Test Suite">
<directory>./test</directory>
Expand All @@ -14,4 +13,9 @@
<env name="TESTS_LAMINAS_FEED_PUBSUBHUBBUB_BASEURI" value="false"/>
<env name="TESTS_LAMINAS_FEED_READER_ONLINE_ENABLED" value="false"/>
</php>
<source>
<include>
<directory>./src</directory>
</include>
</source>
</phpunit>
Loading