Upgrading from v2 to v3
Experiencing issues with composer update
Problem 1
- filament/filament 3.x-dev requires filament/support 3.x-dev -> satisfiable by filament/support[3.x-dev].
- filament/filament v3.0.0 requires filament/support v3.0.0 -> satisfiable by filament/support[v3.0.0].
- filament/filament v3.0.1 requires filament/support v3.0.1 -> satisfiable by filament/support[v3.0.1].
- filament/filament v3.0.2 requires filament/support v3.0.2 -> satisfiable by filament/support[v3.0.2].
- filament/support[v3.0.0, ..., 3.x-dev] require livewire/livewire ^3.0 -> found livewire/livewire[v3.0.0-beta.1, ..., v3.0.0-beta.5] but it conflicts with your root composer.json require (^2.12).
- Root composer.json requires filament/filament ^3.0-stable -> satisfiable by filament/filament[v3.0.0, v3.0.1, v3.0.2, 3.x-dev].
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
5 Replies
Put
"minimum-stability": "dev",
as mentioned here https://filamentphp.com/docs/3.x/panels/upgrade-guide#upgrading-automaticallyI already set that, got the same issue
Solution
Delete composer.lock
Delete livewire in composer.json
And install filament 3
@dansingianiphitech
@shaungbhone Thanks, will try
@shaungbhone Thank you! It worked!