Skip to content

Commit

Permalink
Update phpunit/phpunit requirement from ~9.5.1 to ~10.0.7 (#47)
Browse files Browse the repository at this point in the history
* Update phpunit/phpunit requirement from ~9.5.1 to ~10.0.7

Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version.
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/main/ChangeLog-10.0.md)
- [Commits](sebastianbergmann/phpunit@9.5.1...10.0.7)

---
updated-dependencies:
- dependency-name: phpunit/phpunit
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update phpunit xml config

- updated by migrate-configuration command

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Corinna Hillebrand <[email protected]>
  • Loading branch information
dependabot[bot] and moiikana authored Feb 14, 2023
1 parent 8346b27 commit 2d82508
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"require-dev": {
"symfony/cache": "^5.3",
"phpunit/phpunit": "~9.5.1",
"phpunit/phpunit": "~10.0.7",
"wmde/fundraising-phpcs": "~7.0",
"phpstan/phpstan": "~1.7"
},
Expand Down
14 changes: 8 additions & 6 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<?xml version="1.0"?>
<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="false"
backupStaticAttributes="false"
colors="true"
forceCoversAnnotation="true">
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="false"
colors="true"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
requireCoverageMetadata="true"
>
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
Expand Down

0 comments on commit 2d82508

Please sign in to comment.