Skip to content

Commit

Permalink
MAO-44 closed #44 upgraded to Laravel 5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaishiyoku committed Dec 9, 2018
1 parent d598287 commit 8e2d661
Show file tree
Hide file tree
Showing 34 changed files with 812 additions and 152 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
@@ -0,0 +1,15 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.yml]
indent_size = 2
18 changes: 17 additions & 1 deletion app/Http/Kernel.php
Expand Up @@ -56,7 +56,7 @@ class Kernel extends HttpKernel
* @var array
*/
protected $routeMiddleware = [
'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
'auth' => \App\Http\Middleware\Authenticate::class,
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
Expand All @@ -65,4 +65,20 @@ class Kernel extends HttpKernel
'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
];

/**
* The priority-sorted list of middleware.
*
* This forces non-global middleware to always be in the given order.
*
* @var array
*/
protected $middlewarePriority = [
\Illuminate\Session\Middleware\StartSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\Authenticate::class,
\Illuminate\Session\Middleware\AuthenticateSession::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
\Illuminate\Auth\Middleware\Authorize::class,
];
}
21 changes: 21 additions & 0 deletions app/Http/Middleware/Authenticate.php
@@ -0,0 +1,21 @@
<?php

namespace App\Http\Middleware;

use Illuminate\Auth\Middleware\Authenticate as Middleware;

class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string
*/
protected function redirectTo($request)
{
if (! $request->expectsJson()) {
return route('login');
}
}
}
7 changes: 7 additions & 0 deletions app/Http/Middleware/VerifyCsrfToken.php
Expand Up @@ -6,6 +6,13 @@

class VerifyCsrfToken extends Middleware
{
/**
* Indicates whether the XSRF-TOKEN cookie should be set on the response.
*
* @var bool
*/
protected $addHttpCookie = true;

/**
* The URIs that should be excluded from CSRF verification.
*
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/app.php
Expand Up @@ -12,7 +12,7 @@
*/

$app = new Illuminate\Foundation\Application(
realpath(__DIR__.'/../')
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
);

/*
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Expand Up @@ -15,11 +15,11 @@
"fideloper/proxy": "4.0.0",
"jikan-me/jikan": "2.3.0",
"kaishiyoku/laravel-menu": "2.0.0",
"kaishiyoku/yaml-translation": "5.6.0",
"kaishiyoku/yaml-translation": "5.7.0",
"laracasts/flash": "3.0.2",
"laravel/framework": "5.6.39",
"laravel/framework": "5.7.16",
"laravel/tinker": "1.0.8",
"laravelcollective/html": "5.6.10",
"laravelcollective/html": "5.7.1",
"spatie/laravel-backup": "5.11.3",
"webup/laravel-sendinblue": "1.1.3"
},
Expand Down Expand Up @@ -60,11 +60,11 @@
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"php artisan ide-helper:generate",
Expand Down

0 comments on commit 8e2d661

Please sign in to comment.