I have two PHP projects, one of which depends on the other. I want to import the projectA into projectB using composer, but non in vendor folder, or any other custom named folder. I want to import the project into the root of projectB. Can this be achieved?
I tried using this:
"config" : {
"vendor-dir" : "/"
}
But, I get [RuntimeException] does not exist and could not be created.
Tried with backslash and empty string, but none work.