refactor(support): group Bouncer, Media, Setup files into subdirs

Finishes the Support/ consolidation pass: the three remaining root-level files get grouped into purpose-named subdirs, matching the shape the Pdf/, Hashids/, Update/, and Module/ subdirs took in the earlier sweep.

- BouncerDefaultScope → Support/Bouncer/ (Bouncer-specific authorization scope)

- CustomPathGenerator → Support/Media/ (Spatie MediaLibrary path generator — media config references it from config/media-library.php)

- InstallWizardAuth → Support/Setup/ (folded into the existing Setup/ subdir alongside EnvironmentManager, FilePermissionChecker, InstallUtils, RequirementsChecker — it's install-wizard-flow state)

4 consumer files updated (AppServiceProvider, LoginController, UseInstallWizardTokenAuth middleware, config/media-library.php). app/Support/ root is now completely empty of standalone PHP files except helpers.php.
This commit is contained in:
Darko Gjorgjijoski
2026-04-11 15:00:00 +02:00
parent 8cc4a6fa98
commit 4c3d809f89
7 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ namespace App\Http\Controllers\Setup;
use App\Http\Controllers\Controller;
use App\Models\User;
use App\Support\InstallWizardAuth;
use App\Support\Setup\InstallWizardAuth;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;

View File

@@ -3,8 +3,8 @@
namespace App\Http\Middleware;
use App\Models\Setting;
use App\Support\InstallWizardAuth;
use App\Support\Setup\InstallUtils;
use App\Support\Setup\InstallWizardAuth;
use Closure;
use Illuminate\Http\Request;
use Symfony\Component\HttpFoundation\Response;

View File

@@ -18,9 +18,9 @@ use App\Policies\ReportPolicy;
use App\Policies\RolePolicy;
use App\Policies\SettingsPolicy;
use App\Policies\UserPolicy;
use App\Support\BouncerDefaultScope;
use App\Support\InstallWizardAuth;
use App\Support\Bouncer\BouncerDefaultScope;
use App\Support\Setup\InstallUtils;
use App\Support\Setup\InstallWizardAuth;
use Gate;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Broadcast;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Support;
namespace App\Support\Bouncer;
use Silber\Bouncer\Database\Scope\Scope;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Support;
namespace App\Support\Media;
use App\Models\Estimate;
use App\Models\Invoice;

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Support;
namespace App\Support\Setup;
use Illuminate\Http\Request;

View File

@@ -1,6 +1,6 @@
<?php
use App\Support\CustomPathGenerator;
use App\Support\Media\CustomPathGenerator;
use Spatie\ImageOptimizer\Optimizers\Avifenc;
use Spatie\ImageOptimizer\Optimizers\Cwebp;
use Spatie\ImageOptimizer\Optimizers\Gifsicle;