I'm experiencing a weird bug I haven't been able to figure out. When I include the filament/filament package in my app's main composer.json file, I get the latest version (v3.2.50) as expected:
I've tried changing it to "filament/filament": "^3.2" - same problem. It works correctly when in the main app's composer.json but not when included via the Composer Merge plugin.
I don't have any other packages that require filament/filament. I'm sure of this because when I remove it from the module/filament/composer.json it gets completely removed from the project. Doesn't that mean it's only being required in this one place, and the latest matching version should be downloaded? The only way I can get v3.2.50 to install via the module's composer.json is to use "filament/filament": "3.2.50" which obviously isn't practical.
I've also tried removing "ignore-duplicates": true and using "replace": true - same problem.
Hi all
I'm experiencing a weird bug I haven't been able to figure out. When I include the
filament/filament
package in my app's main composer.json file, I get the latest version (v3.2.50) as expected:But when I include it in the composer.json of one of my modules, I'm getting v3.2.40:
I've tried changing it to "filament/filament": "^3.2" - same problem. It works correctly when in the main app's composer.json but not when included via the Composer Merge plugin.
I don't have any other packages that require
filament/filament
. I'm sure of this because when I remove it from themodule/filament/composer.json
it gets completely removed from the project. Doesn't that mean it's only being required in this one place, and the latest matching version should be downloaded? The only way I can get v3.2.50 to install via the module's composer.json is to use "filament/filament": "3.2.50" which obviously isn't practical.I've also tried removing
"ignore-duplicates": true
and using"replace": true
- same problem.Am I missing something obvious or is this a bug?
Thanks