I Can't Install filament v4 beta
and i set "minimum-stability": "beta", in composer
Solution:Jump to solution
You shouldn't use the exact version, because it will never update to a new version unless you change it manually. Please try this:
...
10 Replies
composer require filament/filament:"^4.0.0-beta1"
worked, thanks
but in documentation does not include this

Did you set minimum stability to 'beta' in the composer?
i set to beta
cool, Suspect it's because its beta1 opposed to beta-1 will check with dna.
1. Did you set
2. Are you on Windows?
Looks like you are on Windows: On Windows
"minimum-stability": "beta"
?^
is an escape character in the shell so it reduces that one to 4.0
The "4.0" constraint for "filament/filament" appears too strict and will likely not match what you want.I forgot what the solutions was. Can you try whether
composer require "filament/filament:^4.0"
(quotes around the whole package name and constraint) works?Hello @Dennis Koch
1. yes i already put beta
2.yes i am using windows
@toeknee solution is worked thanks for helping me
Solution
You shouldn't use the exact version, because it will never update to a new version unless you change it manually. Please try this:
thanks