mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Consolidate the legacy Laravel 5-era kernel/handler architecture into the modern Application::configure() pattern introduced in Laravel 11: - HTTP middleware stack → bootstrap/app.php withMiddleware() - Console schedule → bootstrap/app.php withSchedule() - Exception handling → bootstrap/app.php withExceptions() - Route registration → bootstrap/app.php withRouting() - Service providers → bootstrap/providers.php Deleted files: - app/Http/Kernel.php - app/Console/Kernel.php - app/Exceptions/Handler.php - app/Providers/RouteServiceProvider.php - app/Providers/BroadcastServiceProvider.php Removed framework providers from config/app.php (auto-registered by Application::configure). Package providers use auto-discovery. All 107 tests pass. Schedule, routes, and middleware verified working. |
4 weeks ago | |
|---|---|---|
| .. | ||
| api.php | 4 weeks ago | |
| channels.php | 4 weeks ago | |
| console.php | 4 weeks ago | |
| web-admin.php | 4 weeks ago | |
| web-api.php | 4 weeks ago | |
| web-portfolio.php | 4 weeks ago | |
| web.php | 4 weeks ago | |