Skip to content

Commit

Permalink
Compatibility with Laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgaber committed Feb 20, 2022
1 parent 10389b0 commit 3c1b094
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
php: ['7.3', '7.4', '8.0']
php: ['7.3', '7.4', '8.0', '8.1']
composer_flags: ['', '--prefer-lowest']

steps:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to NovaUnit will be documented in this file.

## 2.3

- Compatibility with Laravel 9

## 2.2

- Support for PHP 8

## 2.1

- Added assertion method for checking creation and update rules
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ composer require --dev joshgaber/novaunit

### Requirements

* PHP 7.2 or higher
* [Laravel](https://laravel.com/) 6.x - 7.x
* PHP 7.3 or higher
* [Laravel](https://laravel.com/) 6.x - 9.x
* [Laravel Nova](https://nova.laravel.com/) 2.x - 3.x
* [PHPUnit](https://github.com/sebastianbergmann/phpunit) 8.5.x - 9.x

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "joshgaber/novaunit",
"description": "Unit testing suite for Laravel Nova, built to extend PHPUnit",
"version": "2.2",
"version": "2.3",
"keywords": [
"laravel",
"nova",
Expand All @@ -23,7 +23,7 @@
"php": "^7.3 || ^8.0",
"ext-mbstring": "*",
"cakephp/chronos": ">=1.2.3",
"illuminate/support": "^8.0",
"illuminate/support": "^8.0|^9.0",
"laravel/nova": "^3.0",
"phpunit/phpunit": "^9.0"
},
Expand Down

0 comments on commit 3c1b094

Please sign in to comment.