Skip to content

Commit 6b12eb3

Browse files
committed
Add support for PHPUnit 8 as well as 9 and update test workflow deps
1 parent 8ddd3db commit 6b12eb3

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
php-version: ["7.3", "7.4"]
12+
php-version: ["7.2", "7.3", "7.4"]
1313

1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2
1717

1818
- name: Setup PHP
19-
uses: shivammathur/setup-php@v1
19+
uses: shivammathur/setup-php@v2
2020
with:
2121
php-version: ${{ matrix.php-version }}
2222
coverage: none

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## 1.1.0 - 2020-04-17
8+
9+
### Added
10+
11+
- Added support for PHPUnit `^8|^9`.
12+
713
## [1.0.2] - 2020-02-28
814

915
### Changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"php": "^7.2"
2222
},
2323
"require-dev": {
24-
"phpunit/phpunit": "^9.0"
24+
"phpunit/phpunit": "^8.0|^9.0"
2525
},
2626
"autoload": {
2727
"psr-4": {

0 commit comments

Comments
 (0)