Skip to content

Commit

Permalink
Permit PHPUnit 10 (#12)
Browse files Browse the repository at this point in the history
Fixes #10
  • Loading branch information
sanmai committed May 7, 2023
1 parent 6881e93 commit aa08b49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,5 @@ jobs:
- name: Run tests
run: |
php vendor/bin/phpunit --repeat=3
php vendor/bin/phpunit --repeat=3 || true
php vendor/bin/phpunit
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
}
],
"require": {
"phpunit/phpunit": "^7 || ^8 || ^9"
"phpunit/phpunit": "^7 || ^8 || ^9 || ^10"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20 || ^8.5.29 || ^9.5.24",
"phpunit/phpunit": "^7.5.20 || ^8.5.29 || ^9.5.24 || ^10.1.2",
"friendsofphp/php-cs-fixer": "^2.16"
},
"config": {
Expand Down

0 comments on commit aa08b49

Please sign in to comment.