A composer plugin to install wambo modules to a wambo project.
composer require wambo/wambo-composer-installer
to install a module to a wambo project you can use a this installer. The installer get "extra -> class" from
composer.json and add them a json file: vendor/modules.json
.
{
"type": "wambo-module",
}
"extra": {
"class": "Wambo\\Test\\Test"
},
"autoload": {
"psr-4": {
"Wambo\\Test\\": "src/Wambo/Test/"
}
},