Is there a general / standard approach to installing a github branch when the "parent" is installed using composer?
To hopefully clarify: I would like to install this branch (PHP Dropbox SDK), which provides functionality that I need beyond the standard offering. The instructions for the "parent" process specify to install using:
php composer require kunalvarma05/dropbox-php-sdk
But of course that does not include the branch. I have looked around for details of installation when composer is used, and have found confusing results like (this github item), which confuses the issue more for me (it appears to me this is dealing with the problem at a deeper level, and I'm new to this - it's like another language to me).
So is the process standardized, and can I read up on the official approach to doing this? Besides knowing how to install the branch/fork, I also need to know if it supersedes or replaces or adds on to the original. So
- do I "composer require " (once I undestand what "both" means) or "composer install branch ... or do one then the other ....
- do I remove the first and somehow install the branch?
- or something else?
Further, is this something I should avoid altogether once this project moves to production?