agent-rules-kit
Version:
Bootstrap of **Cursor** rules (`.mdc`) and mirror documentation (`.md`) for AI agent-guided projects.
21 lines (17 loc) • 463 B
Markdown
description: Service provider guidelines for Laravel 12
globs: <root>/bootstrap/app.php
alwaysApply: false
# Service Providers – Laravel 12
From **Laravel 12** onward, providers are registered in
`bootstrap/app.php` through `Application::configure()` instead of the
legacy `config/app.php` array.
```php
return Application::configure()
->withProviders([
App\Providers\AuthServiceProvider::class,
// …
])
->create();
```