Skip to content

Commit

Permalink
chore: 🤖 Support v5 + v6 and test on PHP 8.3 (#4)
Browse files Browse the repository at this point in the history
* chore: 🤖 Support v5 + v6 and test on PHP 8.3

* docs: ✏️ Update README
  • Loading branch information
mpyw authored May 7, 2024
1 parent 25032e9 commit d50a4a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [5.3, 5.4, 5.5, 5.6, '7.0', 7.1, 7.2, 7.3, 7.4, '8.0', 8.1, 8.2]
php: [5.3, 5.4, 5.5, 5.6, '7.0', 7.1, 7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3]
flags: ['']
include:
- { php: 5.3, flags: --prefer-lowest }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Fixes `assertSame()`/`assertEquals()` serialization errors running in separate p

- php: `>=5.3.3`
- [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit): `>=4.8.0`
- [sebastianbergmann/comparator](https://github.com/sebastianbergmann/comparator): `^1.0 || ^2.0 || ^3.0 || ^4.0`
- [sebastianbergmann/comparator](https://github.com/sebastianbergmann/comparator): `^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0`

## Installing

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"require": {
"php": ">=5.3.3",
"sebastian/comparator": "^1.0 || ^2.0 || ^3.0 || ^4.0"
"sebastian/comparator": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8"
Expand Down

0 comments on commit d50a4a3

Please sign in to comment.