Skip to content

Commit

Permalink
Merge branch 'release/8.13.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdenardis committed Nov 6, 2024
2 parents c83e07b + 8ac20f1 commit e1c0288
Show file tree
Hide file tree
Showing 45 changed files with 779 additions and 2,614 deletions.
23 changes: 23 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,37 @@ APP_TIMEZONE=America/Detroit
APP_LOG_LEVEL=debug
APP_URL=http://base.wayne.local

APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US
APP_MAINTENANCE_DRIVER=file
APP_MAINTENANCE_STORE=database
BCRYPT_ROUNDS=12

LOG_CHANNEL=stack
LOG_STACK=single
LOG_DAILY_DAYS=7

CACHE_DRIVER=redis
CACHE_STORE=file

SESSION_DRIVER=redis
SESSION_LIFETIME=180
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null

DB_CONNECTION=sqlite
DB_DATABASE=":memory:"

REDIS_HOST=localhost
REDIS_PASSWORD=null
REDIS_PORT=6379
REDIS_DB=1
REDIS_PREFIX=base:

QUEUE_CONNECTION=sync
MAIL_MAILER=smtp

WSUAPI_KEY=
WSUAPI_ENDPOINT=
Expand Down
35 changes: 0 additions & 35 deletions app/Console/Kernel.php

This file was deleted.

2 changes: 1 addition & 1 deletion app/Http/Controllers/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;

class Controller extends BaseController
abstract class Controller extends BaseController
{
use ValidatesRequests;
}
83 changes: 0 additions & 83 deletions app/Http/Kernel.php

This file was deleted.

17 changes: 0 additions & 17 deletions app/Http/Middleware/EncryptCookies.php

This file was deleted.

18 changes: 0 additions & 18 deletions app/Http/Middleware/TrimStrings.php

This file was deleted.

28 changes: 0 additions & 28 deletions app/Http/Middleware/TrustProxies.php

This file was deleted.

22 changes: 0 additions & 22 deletions app/Http/Middleware/ValidateSignature.php

This file was deleted.

23 changes: 0 additions & 23 deletions app/Http/Middleware/VerifyCsrfToken.php

This file was deleted.

13 changes: 11 additions & 2 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,22 @@
use App\Repositories\ProfileRepository;
use Contracts\Repositories\ProfileRepositoryContract;
use Illuminate\Contracts\Filesystem\FileNotFoundException;
use Waynestate\Api\Connector;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\ServiceProvider;
use Waynestate\Api\Connector;

class AppServiceProvider extends ServiceProvider
{
/**
* The path to your application's "home" route.
*
* Typically, users are redirected here after authentication.
*
* @var string
*/
public const HOME = '/home';

/** @var $prefx **/
protected $prefix = 'App';

Expand Down
38 changes: 0 additions & 38 deletions app/Providers/EventServiceProvider.php

This file was deleted.

36 changes: 0 additions & 36 deletions app/Providers/RouteServiceProvider.php

This file was deleted.

Loading

0 comments on commit e1c0288

Please sign in to comment.