Skip to content

Commit bb8c8cb

Browse files
authored
Merge pull request #79 from pushpak/laravel-8-support
Add Laravel 8 Support
2 parents 6b4c617 + 2f35317 commit bb8c8cb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
],
1515
"require": {
1616
"php": ">=5.5.0",
17-
"illuminate/support": "5.*|^6.0|^7.0",
18-
"illuminate/queue": "5.*|^6.0|^7.0",
19-
"illuminate/bus": "5.*|^6.0|^7.0",
17+
"illuminate/support": "5.*|^6.0|^7.0|^8.0",
18+
"illuminate/queue": "5.*|^6.0|^7.0|^8.0",
19+
"illuminate/bus": "5.*|^6.0|^7.0|^8.0",
2020
"aws/aws-sdk-php": "~3.0",
21-
"illuminate/http": "5.*|^6.0|^7.0"
21+
"illuminate/http": "5.*|^6.0|^7.0|^8.0"
2222
},
2323
"require-dev": {
2424
"phpunit/phpunit": "3.7.*",

src/Integrations/BindsWorker.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ trait BindsWorker
2020
*/
2121
protected $workerImplementations = [
2222
'5\.[345678]\.\d+' => Laravel53Worker::class,
23-
'[67]\.\d+\.\d+' => Laravel6Worker::class
23+
'[678]\.\d+\.\d+' => Laravel6Worker::class
2424
];
2525

2626
/**

0 commit comments

Comments
 (0)