-
-
Notifications
You must be signed in to change notification settings - Fork 8
allow phpdocumentor/reflection-docblock 5 #2
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changelog show a bump in PHP version as far as I can see
@Nyholm That's fine, Composer will choose a version of the package matching the PHP version locally installed. |
Yes. I just wanted to make sure there were no BC breaks in the API. Im 👍 |
composer.json
Outdated
@@ -6,7 +6,7 @@ | |||
"require": { | |||
"php": "^7.0", | |||
"doctrine/annotations": "^1.0", | |||
"phpdocumentor/reflection-docblock": "^3.0|^4.0", | |||
"phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not a fan of *
.
Restrictions are good. =)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consistency also ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Joke apart, I don't like that packs add their own constraints, that's why I prefer a *
. Ppl that need better control should unpack.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah. That is fair.
I’m okey with * but only because this is a pack. Other packages (that require the documentor) need to have “real” versions specified in their dependencies.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Totally!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The difference is that other *
constraints won't actually run as *
in a Flex project, as they are filtered by the Symfony Flex constraint. This one is really a *
.
Thank you @xabbuh. |
No description provided.