Skip to content

Commit

Permalink
Allow PHPUnit 10
Browse files Browse the repository at this point in the history
  • Loading branch information
emodric committed Feb 16, 2023
1 parent 625b268 commit aa7a4fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea/
.phpunit.cache/
coverage/
vendor/
.php-cs-fixer.cache
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"require-dev": {
"netgen/layouts-coding-standard": "^2.0",
"phpunit/phpunit": "^9.6",
"phpunit/phpunit": "^9.6 || ^10.0",
"symfony/phpunit-bridge": "^5.4",
"symfony/var-dumper": "^5.4",
"phpstan/phpstan": "^1.9",
Expand Down
4 changes: 2 additions & 2 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
forceCoversAnnotation="true"
requireCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
>
Expand Down

0 comments on commit aa7a4fc

Please sign in to comment.