Skip to content

Commit 9776b5d

Browse files
committed
Laravel 5.6 and theme upgrades :)
1 parent 38699d5 commit 9776b5d

File tree

243 files changed

+14459
-151763
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+14459
-151763
lines changed

.babelrc

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"plugins": [
3+
[
4+
"babel-plugin-root-import",
5+
{
6+
"rootPathPrefix": "@",
7+
"rootPathSuffix": "./resources/assets/js"
8+
}
9+
]
10+
]
11+
}

.env.example

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
APP_NAME=Laravel
12
APP_ENV=local
23
APP_KEY=
34
APP_DEBUG=true
4-
APP_LOG_LEVEL=debug
55
APP_URL=http://localhost
66

7+
LOG_CHANNEL=stack
8+
79
DB_CONNECTION=mysql
810
DB_HOST=127.0.0.1
911
DB_PORT=3306
@@ -14,6 +16,7 @@ DB_PASSWORD=secret
1416
BROADCAST_DRIVER=log
1517
CACHE_DRIVER=file
1618
SESSION_DRIVER=file
19+
SESSION_LIFETIME=120
1720
QUEUE_DRIVER=sync
1821

1922
REDIS_HOST=127.0.0.1
@@ -30,3 +33,7 @@ MAIL_ENCRYPTION=null
3033
PUSHER_APP_ID=
3134
PUSHER_APP_KEY=
3235
PUSHER_APP_SECRET=
36+
PUSHER_APP_CLUSTER=mt1
37+
38+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
39+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
/node_modules
2-
/public/storage
32
/public/hot
3+
/public/storage
44
/storage/*.key
55
/vendor
66
/.idea
7+
/.vscode
78
/.vagrant
89
Homestead.json
910
Homestead.yaml
11+
npm-debug.log
12+
yarn-error.log
1013
.env
1114
composer.lock

app/Console/Kernel.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel
1313
* @var array
1414
*/
1515
protected $commands = [
16-
16+
//
1717
];
1818

1919
/**
@@ -29,13 +29,14 @@ protected function schedule(Schedule $schedule)
2929
}
3030

3131
/**
32-
* Register the Closure based commands for the application.
32+
* Register the commands for the application.
3333
*
3434
* @return void
3535
*/
3636
protected function commands()
3737
{
38-
require base_path('routes/console.php');
3938
$this->load(__DIR__.'/Commands');
39+
40+
require base_path('routes/console.php');
4041
}
4142
}

app/Exceptions/Handler.php

+12-24
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,27 @@
33
namespace App\Exceptions;
44

55
use Exception;
6-
use Illuminate\Auth\AuthenticationException;
76
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
87

98
class Handler extends ExceptionHandler
109
{
1110
/**
12-
* A list of the exception types that should not be reported.
11+
* A list of the exception types that are not reported.
1312
*
1413
* @var array
1514
*/
1615
protected $dontReport = [
17-
\Illuminate\Auth\AuthenticationException::class,
18-
\Illuminate\Auth\Access\AuthorizationException::class,
19-
\Symfony\Component\HttpKernel\Exception\HttpException::class,
20-
\Illuminate\Database\Eloquent\ModelNotFoundException::class,
21-
\Illuminate\Session\TokenMismatchException::class,
22-
\Illuminate\Validation\ValidationException::class,
16+
//
17+
];
18+
19+
/**
20+
* A list of the inputs that are never flashed for validation exceptions.
21+
*
22+
* @var array
23+
*/
24+
protected $dontFlash = [
25+
'password',
26+
'password_confirmation',
2327
];
2428

2529
/**
@@ -46,20 +50,4 @@ public function render($request, Exception $exception)
4650
{
4751
return parent::render($request, $exception);
4852
}
49-
50-
/**
51-
* Convert an authentication exception into an unauthenticated response.
52-
*
53-
* @param \Illuminate\Http\Request $request
54-
* @param \Illuminate\Auth\AuthenticationException $exception
55-
* @return \Illuminate\Http\Response
56-
*/
57-
protected function unauthenticated($request, AuthenticationException $exception)
58-
{
59-
if ($request->expectsJson()) {
60-
return response()->json(['error' => 'Unauthenticated.'], 401);
61-
}
62-
63-
return redirect()->guest(route('login'));
64-
}
6553
}

app/Http/Controllers/Auth/LoginController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ class LoginController extends Controller
3434
*/
3535
public function __construct()
3636
{
37-
$this->middleware('guest', ['except' => 'logout']);
37+
$this->middleware('guest')->except('logout');
3838
}
3939
}

app/Http/Controllers/Auth/RegisterController.php

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use App\User;
66
use App\Http\Controllers\Controller;
7+
use Illuminate\Support\Facades\Hash;
78
use Illuminate\Support\Facades\Validator;
89
use Illuminate\Foundation\Auth\RegistersUsers;
910

@@ -48,24 +49,24 @@ public function __construct()
4849
protected function validator(array $data)
4950
{
5051
return Validator::make($data, [
51-
'name' => 'required|max:255',
52-
'email' => 'required|email|max:255|unique:users',
53-
'password' => 'required|min:6|confirmed',
52+
'name' => 'required|string|max:255',
53+
'email' => 'required|string|email|max:255|unique:users',
54+
'password' => 'required|string|min:6|confirmed',
5455
]);
5556
}
5657

5758
/**
5859
* Create a new user instance after a valid registration.
5960
*
6061
* @param array $data
61-
* @return User
62+
* @return \App\User
6263
*/
6364
protected function create(array $data)
6465
{
6566
return User::create([
6667
'name' => $data['name'],
6768
'email' => $data['email'],
68-
'password' => bcrypt($data['password']),
69+
'password' => Hash::make($data['password']),
6970
]);
7071
}
7172
}

app/Http/Kernel.php

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class Kernel extends HttpKernel
1818
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
1919
\App\Http\Middleware\TrimStrings::class,
2020
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
21+
\App\Http\Middleware\TrustProxies::class,
2122
];
2223

2324
/**
@@ -53,8 +54,10 @@ class Kernel extends HttpKernel
5354
'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
5455
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
5556
'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
57+
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
5658
'can' => \Illuminate\Auth\Middleware\Authorize::class,
5759
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
60+
'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
5861
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
5962
];
6063
}

app/Http/Middleware/EncryptCookies.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace App\Http\Middleware;
44

5-
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
5+
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
66

7-
class EncryptCookies extends BaseEncrypter
7+
class EncryptCookies extends Middleware
88
{
99
/**
1010
* The names of the cookies that should not be encrypted.

app/Http/Middleware/TrimStrings.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace App\Http\Middleware;
44

5-
use Illuminate\Foundation\Http\Middleware\TrimStrings as BaseTrimmer;
5+
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
66

7-
class TrimStrings extends BaseTrimmer
7+
class TrimStrings extends Middleware
88
{
99
/**
1010
* The names of the attributes that should not be trimmed.

app/Http/Middleware/TrustProxies.php

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
namespace App\Http\Middleware;
4+
5+
use Illuminate\Http\Request;
6+
use Fideloper\Proxy\TrustProxies as Middleware;
7+
8+
class TrustProxies extends Middleware
9+
{
10+
/**
11+
* The trusted proxies for this application.
12+
*
13+
* @var array
14+
*/
15+
protected $proxies;
16+
17+
/**
18+
* The headers that should be used to detect proxies.
19+
*
20+
* @var string
21+
*/
22+
protected $headers = Request::HEADER_X_FORWARDED_ALL;
23+
}

app/Http/Middleware/VerifyCsrfToken.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace App\Http\Middleware;
44

5-
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
5+
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
66

7-
class VerifyCsrfToken extends BaseVerifier
7+
class VerifyCsrfToken extends Middleware
88
{
99
/**
1010
* The URIs that should be excluded from CSRF verification.

artisan

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env php
22
<?php
33

4+
define('LARAVEL_START', microtime(true));
5+
46
/*
57
|--------------------------------------------------------------------------
68
| Register The Auto Loader
@@ -13,7 +15,7 @@
1315
|
1416
*/
1517

16-
require __DIR__.'/bootstrap/autoload.php';
18+
require __DIR__.'/vendor/autoload.php';
1719

1820
$app = require_once __DIR__.'/bootstrap/app.php';
1921

@@ -40,7 +42,7 @@ $status = $kernel->handle(
4042
| Shutdown The Application
4143
|--------------------------------------------------------------------------
4244
|
43-
| Once Artisan has finished running. We will fire off the shutdown events
45+
| Once Artisan has finished running, we will fire off the shutdown events
4446
| so that any final work may be done by the application before we shut
4547
| down the process. This is the last thing to happen to the request.
4648
|

bootstrap/autoload.php

-17
This file was deleted.

0 commit comments

Comments
 (0)