-
Notifications
You must be signed in to change notification settings - Fork 25
Use same constraint as latest Magento release #43
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
Use same constraint as latest Magento release #43
Conversation
Thanks @torhoehn! Great contribution :) Very much appreciated! |
I don't think this was a good idea. Are we sure that this package is compatible with phpstan 0.12.3? According to c4ac75a it probably needs a minimum version of 0.12.18? But I might be wrong. Then, by constraining it to not be updated to versions higher than 0.12.23 you're making it difficult for people who do actually want to use versions higher than this. I would remove this upper constraint because:
If it turns out this project needs at least version 0.12.18, I suggest we change the constraint to Thoughts? (The release of 0.4.0 should also mention #43 instead of #40 on the first line 😉 ) |
Thinking about this some more, why do you even want to install |
Also: the installation instructions mention to use So this PR makes no sense. I think everybody got confused by an invalid request in #42, no? |
@hostep thank you very much for your input and big apologies for not thinking things through completely. I would say the idea came with good intentions but reality hits us hard. I'll open #42 again to have the discussion there on how to solve things. Just wondering: What is your use case for using |
No worries! 🙂 Yes, Magento module development, but not using an entire Magento project. This tools is used for static code analysis and not integration or functional testing. So we only need some part of the source code of some Magento modules and not an entire Magento project to be able to run the static tests. https://github.com/baldwin-agency/magento2-module-url-data-integrity-checker is the project I'm talking about. |
As described in #42 if I got you right. :)