Skip to content

Tags: laravel/boost

Tags

v2.4.10

Toggle v2.4.10's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update composer.json (#847)

v2.4.9

Toggle v2.4.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add Zed editor agent (#830)

* Add Zed editor agent

* Update Sail.php

v2.4.8

Toggle v2.4.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update composer.json (#815)

v2.4.7

Toggle v2.4.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add Tinker MCP tool for executing PHP in app context (#807)

v2.4.6

Toggle v2.4.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Remove skills listing from foundation guideline (#787)

* Remove skills listing from foundation guideline

* Fix GuidelineAssist constructor call in SkillComposer

v2.4.5

Toggle v2.4.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Support laravel/mcp 0.7.0 (#782)

v2.4.4

Toggle v2.4.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Move deployment guideline to separate deployments/core section (#774)

v2.4.3

Toggle v2.4.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Improve accuracy of Laravel best practices guidelines (#764)

* Improve accuracy of Laravel best practices guidelines

* formatting

v2.4.2

Toggle v2.4.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add deployment section to Laravel core guideline (#758)

* Add deployment section to Laravel core guideline

* Update core.blade.php

---------

Co-authored-by: Taylor Otwell <taylor@laravel.com>

v1.8.13

Toggle v1.8.13's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
Fix normalizeCommand() splitting absolute paths containing spaces (ba…

…ckporting PR #553 for v1.x) (#726)

* Fix normalizeCommand() splitting absolute paths containing spaces

When agents use useAbsolutePathForMcp(), getPhpPath() returns PHP_BINARY
which on macOS with Herd resolves to a path inside "Application Support"
(containing a space). The normalizeCommand() method splits on spaces,
breaking the command into an invalid executable path.

This adds a check to skip splitting when the command is an absolute path
(Unix / or Windows drive letter), preserving paths with spaces while
maintaining existing behavior for relative/compound commands.

Backporting PR #553 for v1.x

* Fix code styling

---------

Co-authored-by: Pushpak Chhajed <pushpak1300@gmail.com>