How to clone repository with Composer without --prefer-source? (using Symfony 2)

后端 未结 3 2004
挽巷
挽巷 2021-02-09 08:02

Scenario: I am working with Symfony 2.2. In my list of required packages is also one of my github repositories, let\'s call it \"TestLib\".

I know that I can define the

3条回答
  •  再見小時候
    2021-02-09 08:28

    What I did was add my github repo to packagist.org then I did this:

    composer require malhal/createdby dev-master --prefer-source
    

    This appears to add the require line to composer.json and also get it as a git repo, unfortunately this only works once so if you wouldn't be able to reuse the composer.json for a new install and would need to delete the require line and then remember to do this same command again. This command also downloads the git repo you don't have to do another composer update.

提交回复
热议问题