-
Notifications
You must be signed in to change notification settings - Fork 15
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
Allow to use symfony LTS #55
Comments
Hello, None of the issue you linked would solve your case:
To answer to the issue itself, the plugin uses the same information as the The "LTS" term is something related only to Symfony, there is no any information about that on composer neither packagist, so I really don't see how we can solve it. 😕 Maybe an issue on composer about LTS releases would be a good start? |
since symfony flex there is an information about the symfony version to use. in
|
Right, so you want composer-versions-check to not tell about outdated packages if you have the If you want to write a PR about that, I'll be glad to take a look. 👍 However, it must be optional. One great addition would be to tell when a new LTS version is available. |
todays most current symfony versions: if i have a project with the following versions with composer require set to
so the your suggestion to create a ticket at composers repo is worth a try but for that i have to do some tests before. respective the PR, sadly i currently really low on time. i i have some left i can have a look at the code (havn't coded a composer plugin before) |
maybe interesting: composer/composer#7682 |
currently the most current symfony version is
4.0.3
, the most current LTS version is3.4.3
.this is the relevant part from
composer.json
on an update the plugin outputs:
as this is all coupled to the symfony lts 3.x it will allways pullute the output of this plugin, which makes it less handy than before.
thinking about it, let it look a little complex for me. on one side i want to see all new versions, also from my subdependencies on the other side i don't want to see subdependency versions which are higher than my symfony LTS. just ignoring major versions also doesn't really help. i would like to see of a non symfony package, for example a friendofsymfony package has a new major version.
only working with a blacklist, whould make really huge lists, if i have to put all the packages above in it.
any good ideas how to solve this?
this is related to #30 #29 #28 maybe #33
The text was updated successfully, but these errors were encountered: