Skip to content

Commit

Permalink
Upgrade to PHP 8.3/Laravel 11.x
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainIRS committed Jul 10, 2024
1 parent 1f75ea1 commit 993c553
Show file tree
Hide file tree
Showing 80 changed files with 39,238 additions and 46,647 deletions.
15 changes: 12 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,33 @@ APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
APP_TIMEZONE=UTC
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US

APP_MAINTENANCE_DRIVER=file
APP_MAINTENANCE_STORE=redis

LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=sqlite

BROADCAST_DRIVER=log
CACHE_DRIVER=file
BROADCAST_CONNECTION=log
CACHE_STORE=file
FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync
QUEUE_CONNECTION=database
SESSION_DRIVER=cookie
SESSION_LIFETIME=120
SESSION_COOKIE_PATH=/
SESSION_DOMAIN=localhost

MEMCACHED_HOST=127.0.0.1

REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
Expand Down
31 changes: 0 additions & 31 deletions app/Console/Kernel.php

This file was deleted.

50 changes: 0 additions & 50 deletions app/Exceptions/Handler.php

This file was deleted.

67 changes: 0 additions & 67 deletions app/Http/Kernel.php

This file was deleted.

21 changes: 0 additions & 21 deletions app/Http/Middleware/Authenticate.php

This file was deleted.

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

This file was deleted.

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

This file was deleted.

31 changes: 0 additions & 31 deletions app/Http/Middleware/RedirectIfAuthenticated.php

This file was deleted.

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

This file was deleted.

20 changes: 0 additions & 20 deletions app/Http/Middleware/TrustHosts.php

This file was deleted.

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

This file was deleted.

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

This file was deleted.

8 changes: 2 additions & 6 deletions app/Livewire/SearchByBranch.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

class SearchByBranch extends Component implements HasForms, HasTable
{
use CommonFields;
use InteractsWithForms;
use InteractsWithTable;
use CommonFields;

public array $courses = [];

Expand Down Expand Up @@ -135,11 +135,7 @@ public function getRankQuery(): Builder

$this->filterYearRound($query);

if ($this->branches) {
$this->title = $this->getTitle($this->branches, $this->rank_type);
} else {
$this->title = '';
}
$this->title = $this->getTitle($this->branches, $this->rank_type);

$this->dispatch('titleUpdated', title: $this->title);

Expand Down
Loading

0 comments on commit 993c553

Please sign in to comment.