Skip to content

Commit 8920ecd

Browse files
committed
v8
1 parent 143b1ae commit 8920ecd

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [7.4, 8.0]
13-
laravel: [7.*, 8.*]
12+
php: [8.0, 8.1]
13+
laravel: [9.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515

1616
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
All the notable changes to the Laravel Google Translate package are documented in this file:
22

3+
## 8.0.0 (07-03-2022)
4+
- Set minimum PHP requirement to PHP 8.0
5+
- [PR by Florian Ressel to add support for Laravel 9](https://github.com/JoggApp/laravel-google-translate/pull/36)
6+
- [PR by Florian Ressel to add the source language as param to translate method](https://github.com/JoggApp/laravel-google-translate/pull/34)
7+
38
## 7.0.0 (24-01-2021)
49
- Add PHP 8 Support
510
- Drop PHP 7.3 Support

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
}
2828
},
2929
"require": {
30-
"php": "^7.4|^8.0",
30+
"php": "^8.0",
3131
"google/cloud-translate": "^1.2",
32-
"illuminate/support": "7.*|8.*|9.*"
32+
"illuminate/support": "9.*"
3333
},
3434
"require-dev": {
3535
"mockery/mockery": "^1.1",
36-
"orchestra/testbench" : "5.*|6.*|7.*",
36+
"orchestra/testbench" : "7.*",
3737
"phpunit/phpunit": "^9.0"
3838
},
3939
"extra": {

0 commit comments

Comments
 (0)