We are currently migrating our project to symfony2. The website uses multiple domains:
domain.com- main websitehelp.domain.com- faqprofile.domain.com- for user CP
and so on
To make it work my idea is to create directory 'sites' and for each subdomain create its own directory where it has framework files + vendor directory with symlinks to directories in root vendor/* (every dir except composer and autoload.php file). So the structure looks something like this:
root/
sites/
domain.com/
app/
src/
web/
vendor/
symlinks for each library to root vendor
composer.json
composer.lock
profile.domain.com/
app/
src/
web/
vendor/
symlinks for each library to root vendor
composer.json
composer.lock
vendor/
I needed to do it this way, because autoload has to be abit different for every domain (we store code that is shared between domains in vendor/Company, and code that is unique for each domain is stored in /src folder of domain directory).
The problem is that now i have to do "composer install" at each directory and it creates its own composer.lock and if i later update at any of the directories, the libs will be updated, but composer.lock files will not be synced, so it will just reinstall it each time.
Is there a better way to solve this problem ? (I thought of putting composer only at the root direcotry, but I didn't find a way to dump different autoload.php files for every domain).