Hi Myol,
the plugin is already available through wpackagist.org as you can see here: https://wpackagist.org/?q=yoimages&type=plugin.
Since wpackagist.org is a mirror of the WordPress plugin and theme directories, it gets automatically all the themes and plugins uploaded to the official WordPress directories.
So, extending for YoImages the sample composer.json shown in wpackagist’s home page would look like something like this:
{
"name": "acme/brilliant-wordpress-site",
"description": "My brilliant WordPress site",
"repositories":[ { "type":"composer", "url":"https://wpackagist.org" } ],
"require": {
"aws/aws-sdk-php":"*",
"wpackagist-plugin/akismet":"dev-trunk",
"wpackagist-plugin/captcha":">=3.9",
"wpackagist-theme/hueman":"*",
"wpackagist-plugin/yoimages":">=0.0.4"
},
"autoload": {
"psr-0": {
"Acme": "src/"
}
}
}
Please let us know if you need any further support.
Thanks for using YoImages!