Skip to content

Commit fed5c1c

Browse files
committed
Drop support for Laravel 6 and 7
1 parent 8c072a5 commit fed5c1c

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

.github/workflows/run-tests.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ jobs:
2121
- { queue: 'github-actions-laravel8-php81', laravel: '8.*', php: '8.1', 'testbench': '6.*'}
2222
- { queue: 'github-actions-laravel8-php80', laravel: '8.*', php: '8.0', 'testbench': '6.*'}
2323
- { queue: 'github-actions-laravel8-php74', laravel: '8.*', php: '7.4', 'testbench': '6.*'}
24-
- { queue: 'github-actions-laravel7-php80', laravel: '7.*', php: '8.0', 'testbench': '5.*' }
25-
- { queue: 'github-actions-laravel7-php74', laravel: '7.*', php: '7.4', 'testbench': '5.*' }
26-
- { queue: 'github-actions-laravel6-php80', laravel: '6.*', php: '8.0', 'testbench': '4.*' }
27-
- { queue: 'github-actions-laravel6-php74', laravel: '6.*', php: '7.4', 'testbench': '4.*' }
2824

2925
name: PHP ${{ matrix.payload.php }} - Laravel ${{ matrix.payload.laravel }} - DB ${{ matrix.db }}
3026

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 3.4.0 - 2023-02-08
8+
9+
**Changed**
10+
11+
- Added support for Laravel 10
12+
- Dropped support for Laravel 6 and 7
13+
714
## 3.3.2 - 2022-11-19
815

916
**Changed**

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,9 @@ This package allows Google Cloud Tasks to be used as the queue driver.
2121
</summary>
2222

2323
<br>
24-
This package requires Laravel 6 or higher and supports MySQL 8 and PostgreSQL 14. Might support older database versions too, but package hasn't been tested for it.
24+
This package requires Laravel 8 or higher and supports MySQL 8 and PostgreSQL 14. Might support older database versions too, but package hasn't been tested for it.
2525

26-
Please check the table below for supported Laravel and PHP versions:
27-
28-
|Laravel Version| PHP Version |
29-
|---|---|
30-
| 6.x | 7.4 or 8.0
31-
| 7.x | 7.4 or 8.0
32-
| 8.x | 7.4 or 8.0 or 8.1
33-
| 9.x | 8.0 or 8.1
26+
Please check the [Laravel support policy](https://laravel.com/docs/master/releases#support-policy) table for supported Laravel and PHP versions.
3427
</details>
3528
<details>
3629
<summary>Installation</summary>

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
"ext-json": "*",
1212
"phpseclib/phpseclib": "~2.0",
1313
"google/cloud-tasks": "^1.10",
14+
"illuminate/support": "^8.0|^9.0|^10.0",
1415
"thecodingmachine/safe": "^1.0|^2.0"
1516
},
1617
"require-dev": {
17-
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
18+
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0",
1819
"nunomaduro/larastan": "^1.0 || ^2.0",
1920
"thecodingmachine/phpstan-safe-rule": "^1.2",
2021
"laravel/legacy-factories": "^1.3"

0 commit comments

Comments
 (0)