I am currently working on a PHP project that uses composer to manage 3rd party dependencies. This project has an /installer subproject which, like the name suggests, contains a small tool that handles the installation and initial configuration of the "main" project. The installer tool also uses composer to handle its dependencies, which are kept separate from the main project's libs.
For convenience reasons, these two projects go into the same git project, and as such in the same PHPStorm project. As both projects dependencies sometimes overlap, I often get a "Multiple definitions exist for class" warning. While this is neither unexpected nor a major issue, I would like to know if there is actually a way to tell PHPStorm "hey, treat everything inside /installer as an independent project, and don't cross-check classes with the outside scope`.
Thanks