Skip to content

Commit a24c290

Browse files
Merge pull request #34 from ExposureSoftware/shift-157062
Laravel 11.x Shift
2 parents 31e57f3 + 88cd8ba commit a24c290

49 files changed

Lines changed: 105 additions & 2020 deletions

Some content is hidden

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

.env.example

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ APP_KEY=
44
APP_DEBUG=true
55
APP_URL=http://localhost
66

7+
APP_LOCALE=en
8+
APP_FALLBACK_LOCALE=en
9+
APP_FAKER_LOCALE=en_US
10+
APP_MAINTENANCE_DRIVER=file
11+
APP_MAINTENANCE_STORE=database
12+
BCRYPT_ROUNDS=12
13+
714
LOG_CHANNEL=stack
15+
LOG_STACK=single
816

917
DB_CONNECTION=mysql
1018
DB_HOST=127.0.0.1
@@ -13,11 +21,14 @@ DB_DATABASE=homestead
1321
DB_USERNAME=homestead
1422
DB_PASSWORD=secret
1523

16-
BROADCAST_DRIVER=log
17-
CACHE_DRIVER=file
24+
BROADCAST_CONNECTION=log
25+
CACHE_STORE=file
1826
QUEUE_CONNECTION=sync
1927
SESSION_DRIVER=file
2028
SESSION_LIFETIME=120
29+
SESSION_ENCRYPT=false
30+
SESSION_PATH=/
31+
SESSION_DOMAIN=null
2132

2233
REDIS_HOST=127.0.0.1
2334
REDIS_PASSWORD=null

app/Console/Kernel.php

Lines changed: 0 additions & 27 deletions
This file was deleted.

app/Exceptions/Handler.php

Lines changed: 0 additions & 30 deletions
This file was deleted.

app/Http/Controllers/Auth/ConfirmPasswordController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace App\Http\Controllers\Auth;
44

55
use App\Http\Controllers\Controller;
6-
use App\Providers\RouteServiceProvider;
6+
use App\Providers\AppServiceProvider;
77
use Illuminate\Foundation\Auth\ConfirmsPasswords;
88

99
class ConfirmPasswordController extends Controller
@@ -26,7 +26,7 @@ class ConfirmPasswordController extends Controller
2626
*
2727
* @var string
2828
*/
29-
protected $redirectTo = RouteServiceProvider::HOME;
29+
protected $redirectTo = AppServiceProvider::HOME;
3030

3131
/**
3232
* Create a new controller instance.

app/Http/Controllers/Auth/LoginController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace App\Http\Controllers\Auth;
44

55
use App\Http\Controllers\Controller;
6-
use App\Providers\RouteServiceProvider;
6+
use App\Providers\AppServiceProvider;
77
use Illuminate\Foundation\Auth\AuthenticatesUsers;
88

99
class LoginController extends Controller
@@ -26,7 +26,7 @@ class LoginController extends Controller
2626
*
2727
* @var string
2828
*/
29-
protected $redirectTo = RouteServiceProvider::HOME;
29+
protected $redirectTo = AppServiceProvider::HOME;
3030

3131
/**
3232
* Create a new controller instance.

app/Http/Controllers/Auth/RegisterController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace App\Http\Controllers\Auth;
44

55
use App\Http\Controllers\Controller;
6-
use App\Providers\RouteServiceProvider;
6+
use App\Providers\AppServiceProvider;
77
use App\User;
88
use Illuminate\Foundation\Auth\RegistersUsers;
99
use Illuminate\Support\Facades\Hash;
@@ -29,7 +29,7 @@ class RegisterController extends Controller
2929
*
3030
* @var string
3131
*/
32-
protected $redirectTo = RouteServiceProvider::HOME;
32+
protected $redirectTo = AppServiceProvider::HOME;
3333

3434
/**
3535
* Create a new controller instance.

app/Http/Controllers/Auth/ResetPasswordController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace App\Http\Controllers\Auth;
44

55
use App\Http\Controllers\Controller;
6-
use App\Providers\RouteServiceProvider;
6+
use App\Providers\AppServiceProvider;
77
use Illuminate\Foundation\Auth\ResetsPasswords;
88

99
class ResetPasswordController extends Controller
@@ -26,5 +26,5 @@ class ResetPasswordController extends Controller
2626
*
2727
* @var string
2828
*/
29-
protected $redirectTo = RouteServiceProvider::HOME;
29+
protected $redirectTo = AppServiceProvider::HOME;
3030
}

app/Http/Controllers/Auth/VerificationController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace App\Http\Controllers\Auth;
44

55
use App\Http\Controllers\Controller;
6-
use App\Providers\RouteServiceProvider;
6+
use App\Providers\AppServiceProvider;
77
use Illuminate\Foundation\Auth\VerifiesEmails;
88

99
class VerificationController extends Controller
@@ -26,7 +26,7 @@ class VerificationController extends Controller
2626
*
2727
* @var string
2828
*/
29-
protected $redirectTo = RouteServiceProvider::HOME;
29+
protected $redirectTo = AppServiceProvider::HOME;
3030

3131
/**
3232
* Create a new controller instance.

app/Http/Controllers/Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Illuminate\Foundation\Validation\ValidatesRequests;
77
use Illuminate\Routing\Controller as BaseController;
88

9-
class Controller extends BaseController
9+
abstract class Controller extends BaseController
1010
{
1111
use AuthorizesRequests, ValidatesRequests;
1212
}

app/Http/Kernel.php

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)