Skip to content
This repository was archived by the owner on Nov 9, 2020. It is now read-only.

Commit 87c4002

Browse files
committed
Use custom payload format to transfer jobs
This makes the plugin incompatible with Laravel 5.7 as they changed the internal method signatures. The queue class cannot be compatible with both at the same time.
1 parent 66059ad commit 87c4002

File tree

6 files changed

+328
-394
lines changed

6 files changed

+328
-394
lines changed

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "biigle/laravel-remote-queue",
3-
"description": "Submit jobs to another Laravel or Lumen instance.",
3+
"description": "Submit jobs to and receive jobs from other Laravel or Lumen instances.",
44
"type": "library",
55
"authors": [
66
{
@@ -10,10 +10,10 @@
1010
],
1111
"require": {
1212
"guzzlehttp/guzzle": "~6.0",
13-
"illuminate/queue": "^5.5",
14-
"illuminate/support": "^5.5",
15-
"illuminate/contracts": "^5.5",
16-
"illuminate/routing": "^5.5"
13+
"illuminate/queue": "5.5.*",
14+
"illuminate/support": "5.5.*",
15+
"illuminate/contracts": "5.5.*",
16+
"illuminate/routing": "5.5.*"
1717
},
1818
"autoload": {
1919
"psr-4": {
@@ -36,7 +36,7 @@
3636
}
3737
},
3838
"require-dev": {
39-
"laravel/laravel": "^5.5",
39+
"laravel/laravel": "5.5.*",
4040
"phpunit/phpunit": "^7.4",
4141
"mockery/mockery": "^1.2"
4242
}

0 commit comments

Comments
 (0)