v3 Beta: Composer install error "minimum-stability"
I get error:
does not match your minimum-stability.
Solution:Jump to solution
Read your error message. Your
minimum-stability
probably doesn't allow beta releases. You need to set it to beta
See Release notes: https://github.com/filamentphp/filament/releases/tag/v3.0.0-beta1
See Composer docs: https://getcomposer.org/doc/04-schema.md#minimum-stability...GitHub
Release v3.0.0-beta1 · filamentphp/filament
If you're interested in testing v3 beta, thank you so much for taking part! You will be helping us by ensuring that v3 is stable enough for public use and release on the 1st of August.
You can ...
The composer.json schema - Composer
A Dependency Manager for PHP
9 Replies
"minimum-stability": "dev"
or beta?Can you please elaborate? It should install the beta, right?
did you config in the composer.json?
You mean like this?
this parameter
minimum-stability"
Solution
Read your error message. Your
minimum-stability
probably doesn't allow beta releases. You need to set it to beta
See Release notes: https://github.com/filamentphp/filament/releases/tag/v3.0.0-beta1
See Composer docs: https://getcomposer.org/doc/04-schema.md#minimum-stabilityGitHub
Release v3.0.0-beta1 · filamentphp/filament
If you're interested in testing v3 beta, thank you so much for taking part! You will be helping us by ensuring that v3 is stable enough for public use and release on the 1st of August.
You can ...
The composer.json schema - Composer
A Dependency Manager for PHP
It was a bit of pain, but I think I got it.
How can I be sure that Im running filament 3? Composer version is still saying 2.5.4
php artisan about
Ok! Im running beta9. Thank you for your help Leandro and @Dennis!