From f8e58cedb2b7a877208d17ad1aad7c8b77639d11 Mon Sep 17 00:00:00 2001 From: CupOfTea696 Date: Sun, 1 Nov 2015 17:54:19 +0000 Subject: [PATCH 01/11] required_unless lang line fix --- resources/lang/en/validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 992122e8..b0a1f143 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -60,7 +60,7 @@ return [ 'regex' => 'The :attribute format is invalid.', 'required' => 'The :attribute field is required.', 'required_if' => 'The :attribute field is required when :other is :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :value.', + 'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_with' => 'The :attribute field is required when :values is present.', 'required_with_all' => 'The :attribute field is required when :values is present.', 'required_without' => 'The :attribute field is required when :values is not present.', From 9a7145e4951bf9b8f5e032e825cf040e6b7026d0 Mon Sep 17 00:00:00 2001 From: ARCANEDEV Date: Thu, 5 Nov 2015 15:54:22 +0000 Subject: [PATCH 02/11] Updating the log system with env variable --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 656f4bb0..7dcfe2d0 100644 --- a/config/app.php +++ b/config/app.php @@ -95,7 +95,7 @@ return [ | */ - 'log' => 'single', + 'log' => env('APP_LOG', 'single'), /* |-------------------------------------------------------------------------- From 223191a9b01d779d238e2cca5e49a83c2cb550ef Mon Sep 17 00:00:00 2001 From: Martin Bean Date: Thu, 19 Nov 2015 23:01:29 +0000 Subject: [PATCH 03/11] Change redirect when authenticated MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The route /home doesn’t exist in a default Laravel application, whereas / does. --- app/Http/Middleware/RedirectIfAuthenticated.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index 495b629c..c85f9e50 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -35,7 +35,7 @@ class RedirectIfAuthenticated public function handle($request, Closure $next) { if ($this->auth->check()) { - return redirect('/home'); + return redirect('/'); } return $next($request); From 6973c86f55232b99562f8e5d3a005d20fe448bf6 Mon Sep 17 00:00:00 2001 From: Leobon Paul-Henri Date: Mon, 23 Nov 2015 02:45:13 +0100 Subject: [PATCH 04/11] Bump Laravel Elixir version Laravel elixir is now at version 4 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8b7c633c..460ee907 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "gulp": "^3.8.8" }, "dependencies": { - "laravel-elixir": "^3.0.0", + "laravel-elixir": "^4.0.0", "bootstrap-sass": "^3.0.0" } } From 8bf110f28d07bf317d2192e82ea624f6d434e267 Mon Sep 17 00:00:00 2001 From: rspahni Date: Tue, 24 Nov 2015 16:32:01 +0100 Subject: [PATCH 05/11] Update passwords.php --- resources/lang/en/passwords.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lang/en/passwords.php b/resources/lang/en/passwords.php index e6f3a671..e5544d20 100644 --- a/resources/lang/en/passwords.php +++ b/resources/lang/en/passwords.php @@ -4,7 +4,7 @@ return [ /* |-------------------------------------------------------------------------- - | Password Reminder Language Lines + | Password Reset Language Lines |-------------------------------------------------------------------------- | | The following language lines are the default lines which match reasons From 739854832044152b5ed5d5a26e7fd553cf737b58 Mon Sep 17 00:00:00 2001 From: Yahya Uddin Date: Wed, 25 Nov 2015 00:12:44 +0000 Subject: [PATCH 06/11] Remove unnecessary fully quantified name The class is unnessarily fully quantified and is an warning that is also flagged up in popular IDE's such as PHPStorm. It is also arguably bad practice as it can lead to problems if directories are moved in the future. --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 0aad2598..5e4a31b2 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel * @var array */ protected $commands = [ - \App\Console\Commands\Inspire::class, + Commands\Inspire::class, ]; /** From f663e25b72a7f82b7b19f20230dd6d5bb8792ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=A9rio=20Vieira?= Date: Wed, 25 Nov 2015 10:51:14 -0200 Subject: [PATCH 07/11] Remove alias inspire --- config/app.php | 1 - 1 file changed, 1 deletion(-) diff --git a/config/app.php b/config/app.php index 7dcfe2d0..036282a6 100644 --- a/config/app.php +++ b/config/app.php @@ -176,7 +176,6 @@ return [ 'Gate' => Illuminate\Support\Facades\Gate::class, 'Hash' => Illuminate\Support\Facades\Hash::class, 'Input' => Illuminate\Support\Facades\Input::class, - 'Inspiring' => Illuminate\Foundation\Inspiring::class, 'Lang' => Illuminate\Support\Facades\Lang::class, 'Log' => Illuminate\Support\Facades\Log::class, 'Mail' => Illuminate\Support\Facades\Mail::class, From 40ab9090aa8be52fb0aecabac99f4983ae73050a Mon Sep 17 00:00:00 2001 From: Pulkit Jalan Date: Tue, 1 Dec 2015 19:31:16 +0000 Subject: [PATCH 08/11] added queue prefix to match the framework --- config/queue.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/queue.php b/config/queue.php index 9d30238e..ff0fdc2d 100644 --- a/config/queue.php +++ b/config/queue.php @@ -53,7 +53,8 @@ return [ 'driver' => 'sqs', 'key' => 'your-public-key', 'secret' => 'your-secret-key', - 'queue' => 'your-queue-url', + 'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id', + 'queue' => 'your-queue-name', 'region' => 'us-east-1', ], From b847ee7486bfebcad33ae1181aa6788831e55670 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 1 Dec 2015 14:08:26 -0600 Subject: [PATCH 09/11] Revert "added queue prefix to match the framework" --- config/queue.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/queue.php b/config/queue.php index ff0fdc2d..9d30238e 100644 --- a/config/queue.php +++ b/config/queue.php @@ -53,8 +53,7 @@ return [ 'driver' => 'sqs', 'key' => 'your-public-key', 'secret' => 'your-secret-key', - 'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id', - 'queue' => 'your-queue-name', + 'queue' => 'your-queue-url', 'region' => 'us-east-1', ], From 39f0cd727a27489450b226c25a941353bf12d10e Mon Sep 17 00:00:00 2001 From: Jelle Spekken Date: Wed, 2 Dec 2015 08:59:51 +0100 Subject: [PATCH 10/11] Create a new middlware instance instead of filter. Shouldn't this be middleware? --- app/Http/Middleware/Authenticate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php index 4fbafecf..538220fb 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/Authenticate.php @@ -15,7 +15,7 @@ class Authenticate protected $auth; /** - * Create a new filter instance. + * Create a new middelware instance. * * @param Guard $auth * @return void From 6722b10051aeb3c39b07f73f4976695ed2e4f982 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Wed, 2 Dec 2015 18:24:00 +0000 Subject: [PATCH 11/11] Fixed typo --- app/Http/Middleware/Authenticate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php index 538220fb..a5ef9c69 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/Authenticate.php @@ -15,7 +15,7 @@ class Authenticate protected $auth; /** - * Create a new middelware instance. + * Create a new middleware instance. * * @param Guard $auth * @return void