For example, let's say that we have something like this:
.
├── app
│ ├── module1
│ │ └── composer.json
│ └── module2
│ └── composer.json
└── composer.json
In each, composer.jsonwe have different dependencies.
How to install all the necessary packages with a single command?
source
share