fix(deps): regenerate composer.lock and vendor on PHP 8.3, normalize line endings - #2471
Merged
Merged
Conversation
The committed vendor tree had drifted ahead of core/composer.lock (laravel/framework v12.69.2 vs the locked v12.67.0, plus ~50 transitive packages). Rebuilt from `composer install` on PHP 8.3 so vendor matches the lock again. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Composer regenerates its bin proxies with CRLF on Windows, which made them show up as modified after every install. Pin eol=crlf so cmd.exe scripts always land with the endings it expects, on every clone and export. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
124 files (mostly bundled JS/CSS, plus a few core and manager files with mixed endings) were stored with CRLF. Pin `* text=auto eol=lf` in .gitattributes and renormalize so the index and every checkout agree, regardless of core.autocrlf. Whitespace-only change. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
core/composer.json had changed since the last lock, so composer.lock was removed and rebuilt from scratch with the default Windows PHP 8.3.29 and Composer 2.10.2, then vendor installed and optimised (--no-dev). Brings illuminate/* to v12.69.2, symfony/* to v7.4.17-19, monolog 3.12, carbon 3.14, guzzle 7.15.5 and the rest of the transitive tree up to date. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
core/composer.jsonhad changed after the last lock, and the committedcore/vendorhad drifted away fromcomposer.lock. Rebuilt from scratch on the default Windows PHP 8.3.29 / Composer 2.10.2:composer.lockremoved and regenerated, thencomposer install+composer optimize(--no-dev). illuminate/* → v12.69.2, symfony/* → v7.4.17–19, monolog 3.12, carbon 3.14, guzzle 7.15.5 and the rest of the transitive tree..gitattributes:* text=auto eol=lf, with*.bat/*.cmdpinned toeol=crlfso Composer's bin proxies stop showing as modified after every install on Windows. 124 files that were stored CRLF or mixed are renormalized to LF (whitespace-only).Pest: 878 passed (4462 assertions).
🤖 Generated with Claude Code