I want to install laravel 12 w livewire starter kit and also install filament v4 to speed up the development of our capstone project.
After i install laravel 12 with livewire starter kit, i install laravel v4 and when i run this command "composer require filament/filament:"^4.0""
this error will show
"Problem 1
- Root composer.json requires filament/filament 4.0 -> satisfiable by filament/filament[v4.0.0].
- filament/filament v4.0.0 requires pragmarx/google2fa ^8.0 -> found pragmarx/google2fa[8.0.0, v8.0.1, v8.0.2, v8.0.3] but the package is fixed to v9.0.0 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions."
then when i tried to use this command "composer require filament/filament:"^4.0" -W"
this error will appear
"Problem 1
- Root composer.json requires filament/filament 4.0 -> satisfiable by filament/filament[v4.0.0].
- filament/filament v4.0.0 requires pragmarx/google2fa ^8.0 -> found pragmarx/google2fa[8.0.0, v8.0.1, v8.0.2, v8.0.3] but these were not loaded, likely because it conflicts with another require."
i think its because livewire v4 and filament v4 is not compatible. can you help me to fix it without replacing livewire starter kit and filament v4. because it is only the way that i can think to speed up the development of out capstone and focus on same stack only. Thanks for your help!