-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
2.8 composer.json depends on unavailable Polyfill packages #16363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Same here.
|
2.8 is not released yet. If you use it, you have expect its not working out-of-then-box. You can change the min stability. |
@Tobion So what should I do to install Symfony 2.8.x-dev on Symfony Standard Edition (branch "2.8")? |
Solution as @Tobion described: Add this to composer.json "minimum-stability": "dev", (Warning: Packages could be unstable). |
Either add this to your "minimum-stability": "dev",
"prefer-stable": true, This means every package may be isntalled as unstable. Or whitelist all packages that need to be dev (in this case the polyfill packages): "symfony/polyfill-intl-icu": "@dev",
"symfony/polyfill-mbstring": "@dev",
"symfony/polyfill-php54": "@dev",
"symfony/polyfill-php55": "@dev",
"symfony/polyfill-php56": "@dev",
"symfony/polyfill-php70": "@dev",
"symfony/polyfill-util": "@dev" |
2.8 composer.json contains:
But there is no 1.0 tag on any of them so composer fails to update.
Composer error message:
symfony/symfony 2.8.x-dev requires symfony/polyfill-intl-icu ~1.0 -> no matching package found.
The text was updated successfully, but these errors were encountered: