Hi,
I’ve a custom composer setup that I recently updated to Kirby 3.
build/
⌙ kirby/
⌙ asset/
⌙ sites/
⌙ etc./
vendor/
composer.json
composer json:
"require":{
"getkirby/cms": "^3.0"
},
"extra": {
"kirby-cms-path": "build/kirby",
"kirby-plugin-path": "build/site/plugins"
},
"config": {
"optimize-autoloader": true
}
This worked fine till today; I realized after I installed a plugin that the plugin didn’t load it dependencies. Resetting everything I also realized that kirby doens’t find it dependencies anymore. Only if I run composer install
in the kirby folder it works again but defeats the purpose as I do have mutliple vendor folders.