diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 80ba950..55789fa 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,7 +10,7 @@ jobs: fail-fast: true matrix: php: [7.3, 7.4] - laravel: [6.*, 7.*] + laravel: [7.*, 8.*] dependency-version: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ac756b..57decad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ All the notable changes to the Laravel Google Translate package are documented in this file: +## 6.0.0 (10-09-2020) +- Added Laravel v8.x support. +- Dropped Laravel v6.x & PHPUnit v8 support. + ## v5.0.1 (30-06-2020) - Patched the format delegation bug. - Thank you to [Simon](https://github.com/smorris1709) for the [PR](https://github.com/JoggApp/laravel-google-translate/pull/18). diff --git a/composer.json b/composer.json index b95453a..06b8599 100644 --- a/composer.json +++ b/composer.json @@ -29,12 +29,12 @@ "require": { "php": "^7.3", "google/cloud-translate": "^1.2", - "illuminate/support": "6.*|7.*" + "illuminate/support": "7.*|8.*" }, "require-dev": { "mockery/mockery": "^1.1", - "orchestra/testbench" : "4.*|5.*", - "phpunit/phpunit": "^8.0" + "orchestra/testbench" : "5.*|6.*", + "phpunit/phpunit": "^9.0" }, "extra": { "laravel": {