Skip to content

Commit

Permalink
v8
Browse files Browse the repository at this point in the history
  • Loading branch information
introwit committed Mar 7, 2022
1 parent 143b1ae commit 8920ecd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.4, 8.0]
laravel: [7.*, 8.*]
php: [8.0, 8.1]
laravel: [9.*]
dependency-version: [prefer-lowest, prefer-stable]

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
All the notable changes to the Laravel Google Translate package are documented in this file:

## 8.0.0 (07-03-2022)
- Set minimum PHP requirement to PHP 8.0
- [PR by Florian Ressel to add support for Laravel 9](https://github.com/JoggApp/laravel-google-translate/pull/36)
- [PR by Florian Ressel to add the source language as param to translate method](https://github.com/JoggApp/laravel-google-translate/pull/34)

## 7.0.0 (24-01-2021)
- Add PHP 8 Support
- Drop PHP 7.3 Support
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
}
},
"require": {
"php": "^7.4|^8.0",
"php": "^8.0",
"google/cloud-translate": "^1.2",
"illuminate/support": "7.*|8.*|9.*"
"illuminate/support": "9.*"
},
"require-dev": {
"mockery/mockery": "^1.1",
"orchestra/testbench" : "5.*|6.*|7.*",
"orchestra/testbench" : "7.*",
"phpunit/phpunit": "^9.0"
},
"extra": {
Expand Down

0 comments on commit 8920ecd

Please sign in to comment.