agent-rules-kit
Version:
CLI tool to bootstrap AI agent rules for multiple IDEs and frameworks. Generates optimized rules for Cursor, VS Code, Claude, and 6+ other AI coding assistants.
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();
```