Skip to content

Commit

Permalink
add support to PHPUnit 11.4 and drop support to PHPUnit 10.5 (see #14)
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Nov 2, 2024
1 parent 8e10a66 commit a2d2724
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ jobs:
with:
composer-options: "--prefer-dist"

- # https://github.com/sebastianbergmann/phpunit/tree/10.5
name: PHPUnit 10
- # https://github.com/sebastianbergmann/phpunit/tree/11.4
name: PHPUnit 11
run: composer tests:unit
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
backupGlobals="false"
backupStaticProperties="false"
bootstrap="bootstrap.php"
Expand Down
2 changes: 1 addition & 1 deletion vendor-bin/phpunit/composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require-dev": {
"phpunit/phpunit": "^10.5"
"phpunit/phpunit": "^11.4"
}
}

0 comments on commit a2d2724

Please sign in to comment.