Skip to content

Commit ecd3d49

Browse files
committed
wip
1 parent fdf1d85 commit ecd3d49

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

installation.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
- [Sail on Linux](#sail-on-linux)
1414
- [Choosing Your Sail Services](#choosing-your-sail-services)
1515
- [IDE Support](#ide-support)
16+
- [Laravel and AI](#laravel-and-ai)
17+
- [Installing Laravel Boost](#installing-laravel-boost)
1618
- [Next Steps](#next-steps)
1719
- [Laravel the Full Stack Framework](#laravel-the-fullstack-framework)
1820
- [Laravel the API Backend](#laravel-the-api-backend)
@@ -265,6 +267,37 @@ You are free to use any code editor you wish when developing Laravel application
265267

266268
In addition, the community maintained [Laravel Idea](https://laravel-idea.com/) PhpStorm plugin offers a variety of helpful IDE augmentations, including code generation, Eloquent syntax completion, validation rule completion, and more.
267269

270+
<a name="laravel-and-ai"></a>
271+
## Laravel and AI
272+
273+
[Laravel Boost](https://github.com/laravel/boost) is a powerful tool that bridges the gap between AI coding agents and Laravel applications. Boost provides AI agents with Laravel-specific context, tools, and guidelines so they can generate more accurate, version-specific code that follows Laravel conventions.
274+
275+
When you install Boost in your Laravel application, AI agents gain access to over 15 specialized tools including the ability to know which packages you are using, query your database, search the Laravel documentation, read browser logs, generate tests, and execute code via Tinker.
276+
277+
In addition, Boost gives AI agents access to over 17,000 pieces of vectorized Laravel ecosystem documentation, specific to your installed package versions. This means agents can provide guidance targeted to the exact versions your project uses.
278+
279+
Boost also includes Laravel-maintained AI guidelines that nudge agents to follow framework conventions, write appropriate tests, and avoid common pitfalls when generating Laravel code.
280+
281+
<a name="installing-laravel-boost"></a>
282+
### Installing Laravel Boost
283+
284+
Boost can be installed in Laravel 10, 11, and 12 applications running PHP 8.1 or higher. To get started, install Boost as a development dependency:
285+
286+
```shell
287+
composer require laravel/boost --dev
288+
```
289+
290+
Once installed, run the interactive installer:
291+
292+
```shell
293+
php artisan boost:install
294+
```
295+
296+
The installer will auto-detect your IDE and AI agents, allowing you to opt into the features that make sense for your project. Boost respects existing project conventions and doesn't force opinionated style rules by default.
297+
298+
> [!NOTE]
299+
> To learn more about Boost, check out the [Laravel Boost repository on GitHub](https://github.com/laravel/boost).
300+
268301
<a name="next-steps"></a>
269302
## Next Steps
270303

0 commit comments

Comments
 (0)