cli/cmd/core-app/laravel/bootstrap/providers.php
Snider c13b6b8b02 feat(core-app): add auto-migration and session/cache tables
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>
2026-02-06 22:56:44 +00:00

7 lines
90 B
PHP

<?php
declare(strict_types=1);
return [
App\Providers\AppServiceProvider::class,
];