-
-
Notifications
You must be signed in to change notification settings - Fork 15
Allow Symfony 7 #793
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 Symfony 7 #793
Conversation
I think we can remove that as long we make sure we do not commit stuff to the lockfile which is not compatible with php 8.1 |
Why do we have a lockfile in the first place? If it's for preventing dev tooling such as phpstan or phpunit from suddenly breaking the build, maybe we should switch to using constraints without |
I'm used to commit the lock file, also for libraries, because the lock file makes sense in terms of making sure everyone working on this project is using the same dependencies as start. You see this in all phpDocumentor projects. It does not harm to have it, and it speeds up the initial installation of a project, because composer doesn't have to do the resolving. |
This makes contributions a bit more complicated. Instead, I'll try using Regarding version of the With So you get 500 ms. By committing it, you make sure people get a green build when they start contributing, but only locally, since It also means there are more jobs than necessary, since you have |
🤔 hopefully this won't cause any issues for the |
Speaking of speedup: https://github.com/phpDocumentor/guides/actions/runs/7369898764/job/20055701284?pr=793#step:5:85
|
Argh, the option I used is not a good solution, because of 8.1-highest. I will try something else. |
4807bc5
to
e973716
Compare
Found a solution. Blocked by phpDocumentor/.github#35 |
Thanks @greg0ire, merged your other pr. Let me know when you need a review. |
6c378bd
to
6b1a78c
Compare
This new version should allow us to upgrade to higher dependencies than before, by eliminating the platform constraint when appropriate.
@jaapio please review |
Thanks! |
No description provided.