Widen laravel/ai constraint to ^0.7|^0.10 - #15
Merged
pushpak1300 merged 1 commit intoAug 10, 2026
Conversation
Consumers on laravel/ai 0.10 cannot install any toolkit package today because every composer.json pins ^0.7. The Tool contract, Strict attribute, Request accessors, and JsonSchema surface used by these tools are unchanged in 0.10, and the full suite stays green after the bump. Co-authored-by: Cursor <cursoragent@cursor.com>
|
@miguelenes is attempting to deploy a commit to the Pushpak Chhajed's projects Team on Vercel. A member of the Team first needs to authorize it. |
This was referenced Aug 7, 2026
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
laravel/aifrom^0.7to^0.7|^0.10in the root, stub, and everysrc/*/composer.json.laravel/ai v0.10.3: pint, rector, phpstan, 100% type coverage, and 299 unit tests all pass.Why
Published toolkit packages currently cannot resolve for apps on
laravel/ai0.10 because Composer reads^0.7as>=0.7.0 <0.8.0. The Tool API surface these packages use (Tool,Strict,Request,JsonSchema) is unchanged in 0.10, so this is a constraint-only unblock.Labels
Please apply
release:patch.Test plan
composer update laravel/ai --with-all-dependenciesresolves tov0.10.3composer testgreen (pint + rector + phpstan + 100% type/code coverage)Made with Cursor