Skip to content

Commit 704b364

Browse files
committed
docs: clarify update process for Laravel Boost
References #352. Clarifies that updates are performed via Composer and guidelines are refreshed via boost:install. Adds a note that there is no dedicated boost:update command.
1 parent f86e780 commit 704b364

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Next, install the MCP server and coding guidelines:
3535
php artisan boost:install
3636
```
3737

38-
Feel free to add the generated MCP configuration file, guideline files (`.mcp.json`, `CLAUDE.md`, `AGENTS.md`, `junie/`, etc.) and `boost.json` configuration file to your application's `.gitignore` as these files are automatically re-generated when running `boost:install` and `boost:update`.
38+
Feel free to add the generated MCP configuration file, guideline files (`.mcp.json`, `CLAUDE.md`, `AGENTS.md`, `junie/`, etc.) and `boost.json` configuration file to your application's `.gitignore` as these files are automatically re-generated when running `boost:install` and `boost:install`.
3939

4040
Once Laravel Boost has been installed, you're ready to start coding with Cursor, Claude Code, or your AI agent of choice.
4141

@@ -112,10 +112,10 @@ Laravel Boost includes AI guidelines for the following packages and frameworks.
112112

113113
### Keeping Guidelines Up-to-Date
114114

115-
You may want to periodically update your local AI guidelines to ensure they reflect the latest versions of the Laravel ecosystem packages you have installed. To do so, you can use the `boost:update` Artisan command.
115+
You may want to periodically update your local AI guidelines to ensure they reflect the latest versions of the Laravel ecosystem packages you have installed. To do so, you can use the `boost:install` Artisan command.
116116

117117
```bash
118-
php artisan boost:update
118+
php artisan boost:install
119119
```
120120

121121
You may also automate this process by adding it to your Composer "post-update-cmd" scripts:
@@ -124,7 +124,7 @@ You may also automate this process by adding it to your Composer "post-update-cm
124124
{
125125
"scripts": {
126126
"post-update-cmd": [
127-
"@php artisan boost:update --ansi"
127+
"@php artisan boost:install --ansi"
128128
]
129129
}
130130
}

0 commit comments

Comments
 (0)