diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0f5c714..0a4ce3c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [ubuntu-latest] php: [7.4] - laravel: [7.*, 6.*] + laravel: [8.*, 7.*, 6.*] dependency-version: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index ec58ff0..eb1481c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this package will be documented in this file. +## v0.3.0 + +- add Laravel 8 support + ## v0.2.0 - add Laravel 7 support diff --git a/composer.json b/composer.json index d62ecac..5ac691f 100644 --- a/composer.json +++ b/composer.json @@ -19,12 +19,12 @@ ], "require": { "php": "^7.4", - "illuminate/contracts": "^6.0 || ^7.0", - "illuminate/support": "^6.0 || ^7.0", + "illuminate/contracts": "^6.0 || ^7.0 || ^8.0", + "illuminate/support": "^6.0 || ^7.0 || ^8.0", "league/iso3166": "^2.1" }, "require-dev": { - "orchestra/testbench": "^4.0 || ^5.0", + "orchestra/testbench": "^4.0 || ^5.0 || ^6.0", "phpunit/phpunit": "^8.0 || ^9.0" }, "config": {