Why are dependencies that are removed from the composer.json file still present in the installer path? Is this the intended behavior, or is there a solution to remove the dependencies from the installer path as well?
First, I will add a dependency to the installer path.
Why are dependencies that are removed from the
composer.json
file still present in the installer path? Is this the intended behavior, or is there a solution to remove the dependencies from the installer path as well?First, I will add a dependency to the installer path.
Then, I will install the plugin by using the
composer require
command.The dependency has been installed correctly in the installer path. Next, I remove it from the
composer.json
file.Then I run
composer update
in the root of the project.The dependency has been removed from the
vendor
directory but remains in the installer path.Related issues: #82 #519