Hi, I just wanted to ask you to add composer installation support.
Either through Packagist or by adding a custom repositories key to the composer.json of the project. To make it work the repository has to have a proper composer.json file in its root folder.
Downloading ZIP files is not even close to modern standards and makes everyone's life harder.
For now, I had to do some hacks to use it with the composer (still better than the ZIP file) but this requires me manual mapping of the release to the project composer.json file so I need to check if there is a new version manually.
This is how I hacked this in my projects composer.json file
Hi, I just wanted to ask you to add composer installation support. Either through Packagist or by adding a custom
repositories
key to the composer.json of the project. To make it work the repository has to have a proper composer.json file in its root folder.Downloading ZIP files is not even close to modern standards and makes everyone's life harder.
For now, I had to do some hacks to use it with the composer (still better than the ZIP file) but this requires me manual mapping of the release to the project composer.json file so I need to check if there is a new version manually.
This is how I hacked this in my projects
composer.json
fileThe
autoload
sectionand the
repositories
sectionAnd after this I can run
but this will always download version tagged as
v1.0.0
as this is how it is mapped (see keysversion
andreference
).