Skip to content

Commit 0be3b06

Browse files
authored
Merge branch 'main' into update/filament_guidelines
2 parents 349ad10 + 71b558f commit 0be3b06

File tree

17 files changed

+91
-32
lines changed

17 files changed

+91
-32
lines changed

.ai/boost/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929

3030
1. Simple Word Searches with auto-stemming - query=authentication - finds 'authenticate' and 'auth'
3131
2. Multiple Words (AND Logic) - query=rate limit - finds knowledge containing both "rate" AND "limit"
32-
3. Quoted Phrases (Exact Position) - query="infinite scroll - Words must be adjacent and in that order
32+
3. Quoted Phrases (Exact Position) - query="infinite scroll" - Words must be adjacent and in that order
3333
4. Mixed Queries - query=middleware "rate limit" - "middleware" AND exact phrase "rate limit"
3434
5. Multiple Queries - queries=["authentication", "middleware"] - ANY of these terms

.ai/filament/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Filament
2-
- Filament is by this application, check how and where to follow existing application conventions.
2+
- Filament is used by this application, check how and where to follow existing application conventions.
33
- Filament is a Server-Driven UI (SDUI) framework for Laravel. It allows developers to define user interfaces in PHP using structured configuration objects. It is built on top of Livewire, Alpine.js, and Tailwind CSS.
44
- You can use the `search-docs` tool to get information from the official Filament documentation when needed. This is very useful for Artisan command arguments, specific code examples, testing functionality, relationship management, and ensuring you're following idiomatic practices.
55
- Do not use the package name in the query, this project's packages are automatically share

.ai/livewire/3/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
- Use the `components.layouts.app` view as the typical layout path (not `layouts.app`).
99

1010
### New Directives
11-
- `wire:show`, `wire:transition`, `wire:cloak, `wire:offline`, `wire:target` are available for use. Use the documentation to find usage examples.
11+
- `wire:show`, `wire:transition`, `wire:cloak`, `wire:offline`, `wire:target` are available for use. Use the documentation to find usage examples.
1212

1313
### Alpine
1414
- Alpine is now included with Livewire, don't manually include Alpine.js.

.ai/pest/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
- You can also create partial mocks using the same import or self method.
3939

4040
### Datasets
41-
- Use datasets in Pest to simplify tests which have a lot of duplicated data. This often the case when testing validation rules, so consider going with this solutionwhen writing tests for validation rules.
41+
- Use datasets in Pest to simplify tests which have a lot of duplicated data. This is often the case when testing validation rules, so consider going with this solution when writing tests for validation rules.
4242

4343
<code-snippet name="Pest Dataset Example" lang="php">
4444
it('has emails', function (string $email) {

.ai/pint/core.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
## Laravel Pint Code Formatter
22

3-
- You must run `vendor/bin/pint` before finalizing changes to ensure your code matches the project's expected style.
3+
- You must run `vendor/bin/pint --dirty` before finalizing changes to ensure your code matches the project's expected style.
44
- Do not run `vendor/bin/pint --test`, simply run `vendor/bin/pint` to fix any formatting issues.

CHANGELOG.md

Lines changed: 53 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,59 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/boost/compare/v0.1.0...1.x)
3+
## [Unreleased](https://github.com/laravel/boost/compare/v1.0.9...main)
44

5+
## [v1.0.9](https://github.com/laravel/boost/compare/v1.0.8...v1.0.9) - 2025-08-13
6+
7+
### What's Changed
8+
9+
* fixes #80 - install Boost MCP into Claude via file instead of shell by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/82
10+
11+
**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.8...v1.0.9
12+
13+
## [v1.0.8](https://github.com/laravel/boost/compare/v1.0.3...v1.0.8) - 2025-08-13
14+
15+
### What's Changed
16+
17+
* fixes #80 by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/81
18+
19+
**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.7...v1.0.8
20+
21+
## [v1.0.3](https://github.com/laravel/boost/compare/v1.0.2...v1.0.3) - 2025-08-13
22+
23+
### What's Changed
24+
25+
* Update Pint Guideline to Use `--dirty` Flag by [@yitzwillroth](https://github.com/yitzwillroth) in https://github.com/laravel/boost/pull/43
26+
* docs: README: add filament by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/58
27+
* Fix Herd detection by [@mpociot](https://github.com/mpociot) in https://github.com/laravel/boost/pull/61
28+
* fix #49: disable boost inject if HTML isn't expected by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/60
29+
30+
### New Contributors
31+
32+
* [@yitzwillroth](https://github.com/yitzwillroth) made their first contribution in https://github.com/laravel/boost/pull/43
33+
* [@mpociot](https://github.com/mpociot) made their first contribution in https://github.com/laravel/boost/pull/61
34+
35+
**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.2...v1.0.3
36+
37+
## [v1.0.2](https://github.com/laravel/boost/compare/v1.0.1...v1.0.2) - 2025-08-13
38+
39+
### What's Changed
40+
41+
* update laravel/roster version by [@ashleyhindle](https://github.com/ashleyhindle) in https://github.com/laravel/boost/pull/42
42+
* Update core.blade.php by [@meatpaste](https://github.com/meatpaste) in https://github.com/laravel/boost/pull/41
43+
44+
### New Contributors
45+
46+
* [@meatpaste](https://github.com/meatpaste) made their first contribution in https://github.com/laravel/boost/pull/41
47+
48+
**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.1...v1.0.2
49+
50+
## [v1.0.1](https://github.com/laravel/boost/compare/v1.0.0...v1.0.1) - 2025-08-13
51+
52+
**Full Changelog**: https://github.com/laravel/boost/compare/v1.0.0...v1.0.1
53+
54+
## [v1.0.0](https://github.com/laravel/boost/compare/v0.1.0...v1.0.0) - 2025-08-13
55+
56+
- Initial release of Laravel Boost.
557

658
## v0.1.0 (202x-xx-xx)
759

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<p align="center">
44
<a href="https://github.com/laravel/boost/actions"><img src="https://github.com/laravel/boost/workflows/tests/badge.svg" alt="Build Status"></a>
5-
<a href="https://packagist.org/packages/laravel/boost"><img src="https://img.shields.io/packagist/dt/boost" alt="Total Downloads"></a>
6-
<a href="https://packagist.org/packages/laravel/boost"><img src="https://img.shields.io/packagist/v/boost" alt="Latest Stable Version"></a>
7-
<a href="https://packagist.org/packages/laravel/boost"><img src="https://img.shields.io/packagist/l/boost" alt="License"></a>
5+
<a href="https://packagist.org/packages/laravel/boost"><img src="https://img.shields.io/packagist/dt/laravel/boost?v=1" alt="Total Downloads"></a>
6+
<a href="https://packagist.org/packages/laravel/boost"><img src="https://img.shields.io/packagist/v/laravel/boost?v=1" alt="Latest Stable Version"></a>
7+
<a href="https://packagist.org/packages/laravel/boost"><img src="https://img.shields.io/packagist/l/laravel/boost?v=1" alt="License"></a>
88
</p>
99

1010
## Introduction
@@ -64,6 +64,7 @@ Laravel Boost includes AI guidelines for the following packages and frameworks.
6464
| Core & Boost | core |
6565
| Laravel Framework | core, 10.x, 11.x, 12.x |
6666
| Livewire | core, 2.x, 3.x |
67+
| Filament | core, 4.x |
6768
| Flux UI | core, free, pro |
6869
| Herd | core |
6970
| Inertia Laravel | core, 1.x, 2.x |
@@ -83,6 +84,7 @@ Laravel Boost includes AI guidelines for the following packages and frameworks.
8384
| Package | Versions Supported |
8485
|---------|-------------------|
8586
| Laravel Framework | 10.x, 11.x, 12.x |
87+
| Filament | 2.x, 3.x, 4.x |
8688
| Flux UI | 2.x Free, 2.x Pro |
8789
| Inertia | 1.x, 2.x |
8890
| Livewire | 1.x, 2.x, 3.x |

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "laravel/boost",
3-
"description": "Laravel AI jump-start to give you a boost",
3+
"description": "Laravel Boost accelerates AI-assisted development to generate high-quality, Laravel-specific code.",
44
"keywords": [
55
"dev",
66
"laravel",
@@ -25,9 +25,9 @@
2525
"illuminate/contracts": "^10.0|^11.0|^12.0",
2626
"illuminate/routing": "^10.0|^11.0|^12.0",
2727
"illuminate/support": "^10.0|^11.0|^12.0",
28-
"laravel/mcp": "dev-main",
28+
"laravel/mcp": "^0.1.0",
2929
"laravel/prompts": "^0.1.9|^0.3",
30-
"laravel/roster": "^0.2.2"
30+
"laravel/roster": "^0.2"
3131
},
3232
"require-dev": {
3333
"laravel/pint": "^1.14|^1.23",

phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@
1313
</testsuites>
1414
<php>
1515
<env name="APP_KEY" value="base64:uz4B1RtFO57QGzbZX1kRYX9hIRB50+QzqFeg9zbFJlY="/>
16+
<env name="APP_DEBUG" value="true"/>
1617
</php>
1718
</phpunit>

0 commit comments

Comments
 (0)