-
Notifications
You must be signed in to change notification settings - Fork 519
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
Proper way to upgrade Satis #825
Comments
The |
I've always preferred to have a project with |
Which installation method is recommended? |
Whichever works best for you. 🤷 It is also a matter of personal preference. I like to use the Docker container. |
OK, then I’ll go for the method with a documented upgrade path. I do think the documentation should be corrected, and users should be guided in picking an installation method, as most (if not all) users don’t really care. |
I see this was done in 8dd9ab3. (It would have been handy to reference the issue.) I also now see that the command on https://getcomposer.org/doc/articles/handling-private-packages.md:
... is not in sync with the one in this repository's README:
I also believe I will create PRs to address both points. |
…ently out of sync. This change fixes that, and prevent this from happening again. Relates to composer/satis#825
…ently out of sync. This change fixes that, and prevent this from happening again. Relates to composer/satis#825 (#11931)
The README says that Satis should be installed using
composer create-project composer/satis:dev-main
.It then says that updating is done with:
git pull && composer install
But when using
composer create-project
,git pull
won't work... After all, there's no Git repository to pull.The documentation at https://getcomposer.org/doc/articles/handling-private-packages.md#satis says that Satis can be installed using Git, too ("You can get it from GitHub or install via CLI").
This implies that there are two supported installation methods (Git, and CLI with
composer create-project
), while the README mentions (only) one for install, and the other for updating.So, there is at least a documentation issue here. But more importantly: what is the proper way to upgrade Satis when installed using
composer create-project
?The text was updated successfully, but these errors were encountered: