문제

I wish to make my module available in github repository and then i wish to install it to my local using composer.json. How is this possible? Please provide me a solution, to install my module using composer.json ?

도움이 되었습니까?

해결책

You can easily host your code to github You need to have a valid composer.json on your module repo. After you just have to add your repository into your magento composer.json like

"repositories": [
{ "type": "vcs", "url": "https://github.com/mycompany/privaterepo" }
]

and you can make a composer require my-module

that's it.

But if you got several modules, think about packagist or Satis instance to handle it easily.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top