AppServiceProvider runs migrate --force on first request. Sessions and cache tables created automatically in SQLite. Removed synthetic HTTP migration approach in favour of pure PHP service provider — cleaner, works with Octane workers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
90 B
PHP
7 lines
90 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
App\Providers\AppServiceProvider::class,
|
|
];
|