From 1843079755f2df6fc35e24fd3b3583b30c240c9f Mon Sep 17 00:00:00 2001 From: Christopher Moore Date: Sat, 18 Feb 2017 13:32:40 -0700 Subject: [PATCH 1/3] udpate laravel deps --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 593cedf..473da24 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "barryvdh/laravel-async-queue", + "name": "nuwave/laravel-async-queue", "description": "Async Queue Driver for Laravel (Push to background)", "keywords": ["laravel", "queue", "async", "background"], "license": "MIT", @@ -11,8 +11,8 @@ ], "require": { "php": ">=5.4.0", - "illuminate/support": "5.3.x", - "illuminate/console": "5.3.x", + "illuminate/support": "5.4.x", + "illuminate/console": "5.4.x", "symfony/process": "~2.6|~3.0" }, "autoload": { From 22c82135716ed3fa43f43f47ea3fce2779173e30 Mon Sep 17 00:00:00 2001 From: Christopher Moore Date: Sat, 18 Feb 2017 15:35:26 -0700 Subject: [PATCH 2/3] allow laravel 5.3 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 473da24..a8019ba 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "nuwave/laravel-async-queue", + "name": "barryvdh/laravel-async-queue", "description": "Async Queue Driver for Laravel (Push to background)", "keywords": ["laravel", "queue", "async", "background"], "license": "MIT", @@ -11,8 +11,8 @@ ], "require": { "php": ">=5.4.0", - "illuminate/support": "5.4.x", - "illuminate/console": "5.4.x", + "illuminate/support": "~5.3", + "illuminate/console": "~5.3", "symfony/process": "~2.6|~3.0" }, "autoload": { From ba4abfb2dbe7ce05b70c21e628c0d812bc7d9c26 Mon Sep 17 00:00:00 2001 From: Christopher Moore Date: Sat, 18 Feb 2017 15:53:40 -0700 Subject: [PATCH 3/3] restrict versions --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index a8019ba..abc4c8e 100644 --- a/composer.json +++ b/composer.json @@ -11,8 +11,8 @@ ], "require": { "php": ">=5.4.0", - "illuminate/support": "~5.3", - "illuminate/console": "~5.3", + "illuminate/support": "5.3.x|5.4.x", + "illuminate/console": "5.3.x|5.4.x", "symfony/process": "~2.6|~3.0" }, "autoload": {