Skip to content

Commit b8d421d

Browse files
committed
Laravel 8 support
- Bump dependencies - Update test - Remove PHP 7.2 from github ci
1 parent f297ec1 commit b8d421d

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

Diff for: .github/workflows/build-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{matrix.os}}
1212
strategy:
1313
matrix:
14-
php: ['7.2', '7.3', '7.4']
14+
php: ['7.3', '7.4']
1515
os: ['ubuntu-latest']
1616
mongodb: ['3.6', '4.0', '4.2', '4.4']
1717
services:

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
55

6+
### Added
7+
- Laravel 8 support by [@divine](https://github.com/divine).
8+
9+
### Changed
10+
- Updated versions of all dependencies by [@divine](https://github.com/divine).
11+
612
## [3.7.0] - 2020-09-18
713

814
### Added

Diff for: composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
],
2020
"license": "MIT",
2121
"require": {
22-
"illuminate/support": "^7.0",
23-
"illuminate/container": "^7.0",
24-
"illuminate/database": "^7.0",
25-
"illuminate/events": "^7.0",
22+
"illuminate/support": "^8.0",
23+
"illuminate/container": "^8.0",
24+
"illuminate/database": "^8.0",
25+
"illuminate/events": "^8.0",
2626
"mongodb/mongodb": "^1.6"
2727
},
2828
"require-dev": {
2929
"phpunit/phpunit": "^8.4|^9.0",
30-
"orchestra/testbench": "^5.0",
30+
"orchestra/testbench": "^6.0",
3131
"mockery/mockery": "^1.3.1",
3232
"doctrine/dbal": "^2.6"
3333
},

Diff for: tests/QueueTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function testQueueJobLifeCycle(): void
3737
'job' => 'test',
3838
'maxTries' => null,
3939
'maxExceptions' => null,
40-
'delay' => null,
40+
'backoff' => null,
4141
'timeout' => null,
4242
'data' => ['action' => 'QueueJobLifeCycle'],
4343
]), $job->getRawBody());

0 commit comments

Comments
 (0)