Skip to content

Commit c9fd81b

Browse files
feat: Support PHPUnit 10 (#4)
1 parent ff40374 commit c9fd81b

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
php-version:
16+
- '8.2'
1617
- '8.1'
1718
- '8.0'
1819
- '7.4'
@@ -25,9 +26,7 @@ jobs:
2526
name: PHP ${{ matrix.php-version }}
2627
steps:
2728
- name: Checkout
28-
uses: actions/checkout@v2
29-
with:
30-
ref: ${{ github.head_ref }}
29+
uses: actions/checkout@v3
3130

3231
- name: Install PHP
3332
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
},
2323
"require": {
2424
"php": ">=5.6",
25-
"php-mock/php-mock": "^2.2",
26-
"phpunit/php-text-template": "^1 || ^2"
25+
"php-mock/php-mock": "^2.4",
26+
"phpunit/php-text-template": "^1 || ^2 || ^3"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^5.7.27 || ^6 || ^7 || ^8 || ^9"
29+
"phpunit/phpunit": "^5.7.27 || ^6 || ^7 || ^8 || ^9 || ^10"
3030
},
3131
"archive": {
3232
"exclude": ["/tests"]

0 commit comments

Comments
 (0)