Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ CHANGELOG.md export-ignore
.styleci.yml export-ignore

run.sh text eol=lf
*.patch eol=lf
10 changes: 8 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,16 @@
"@php artisan db:seed"
],
"post-autoload-dump": [
"@php patches/apply-patches.php",
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-install-cmd": [
"@php patches/apply-patches.php"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php patches/apply-patches.php"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
Expand All @@ -104,7 +109,8 @@
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
"pestphp/pest-plugin": true,
"cweagans/composer-patches": true
}
Comment on lines 111 to 114
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description and this config suggest that cweagans/composer-patches is being used to manage the Filament patch, but the package is not present in require-dev nor in composer.lock, and there is no extra.patches configuration. As a result, the plugin will never actually run for this project, and only the custom patches/apply-patches.php script will apply the fix. To align behavior with the documentation and PR description, either add and configure cweagans/composer-patches in composer.json (including require-dev and extra.patches) or update the docs/description to state clearly that the PHP script is the sole mechanism applying the patch.

Copilot uses AI. Check for mistakes.
},
"minimum-stability": "dev",
Expand Down
Loading
Loading