Question

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 ?

Était-ce utile?

La solution

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à magento.stackexchange
scroll top