initial commit

This commit is contained in:
bastien
2026-06-28 12:29:53 +02:00
parent 03e85d2f9d
commit b2443b654c
220 changed files with 24969 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\Vite;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function register(): void
{
//
}
public function boot(): void
{
if (! enum_exists('SortDirection', false)) {
require_once base_path('vendor/symfony/polyfill-php86/Resources/stubs/SortDirection.php');
}
Schema::defaultStringLength(191);
Vite::prefetch(concurrency: 3);
}
}