php - Multiple apps with composer -


there main application, let's call app.

app has several dependencies (including open source projects , proprietary libraries).

there multiple clients use own instance of app (on different domains manage). of these clients use adjusted version of app. implemented creating specific module (let's call sm) each client add instance of app (so don't change of code app).

currently, i've implemented follows:

  • develop app locally, use composer update dependencies (composer update), push app on central repo

  • for each regular client, pull app central repo , install composer dependencies (composer install)

  • for clients specific implementation, create new sm (specific module), has following composer.json file:

    ... "require": {     "app": "x.x.x" }  ... 

then apply same steps before sm (composer update locally, push central repo, pull central repo, composer install).

everything fine, except 2 issues i'd overcome:

  1. composer.lock app ignored sm (since app loaded library in vendor/ folder, , composer ignores composer.lock files of libraries); not @ all, not confident specific clients use exact same libraries app.

  2. each time fix bug or implement new feature in app (and happens - few times day), apart steps perform regular clients, need rebuild sms (since 1 of libraries - app - updated new version need use). overhead since of changes perform inside app (and not sm). so, if other way (app having sm dependency), have been working faster (since wouldn't need composer update on each sm).

are there known workflows or best practices cover scenario in order mitigate 2 issues above or @ least decrease complexity of upgrade/deployment process?

please note of steps above automated, question not automation part, complexity of architecture

i implemented creating specific module (let's call sm) each client add instance of app

for clients specific implementation, create new sm (specific module), has following composer.json file:

it's application client specific module (next other dependencies).

the application has module dependency (app having sm dependency).

and not: module pulls application it's vendor dependency in. cause steps take during development phase (your issue 2).

i suggest refactor application , it's modules until following folder structure:

|-application             #< application has dependencies   |-src   |-tests   |-vendor     |-framework           #< maybe application framework based     |-libs                #< more dependencies     |-...                 #< other modules     |-sm                  #< client specific module 

this allows pull in dependencies, extend "the application" client-specific needs.

this overcomes issue 1, because app main repository , contains lock file. it's essential lock versions, developers bound same versions , packaging same set of versions.

so, if other way (app having sm dependency), have been working faster (since wouldn't need composer update on each sm).

yes! need rebuild module, each time change app vanish, if start "develop inside app" module dependencies.


and multiple clients, use multiple application repos, have custom set of requirements. 10 clients, 10 application repos, 10 composer.json files. run composer install no-dev pre-package each repo , place zip downloads. done.

you can use "container" or "packaging" project here, composer.json of each project include app , specific modules. might utilize caret or tilde operator specify version range app ("vendor/app": "^1.2.3") , update , repackage, after new version of application released. approach should work composer autoloading, because application remain inside vendor folder, too. little wrapper needed, set composer autoloader , switch on application.

or, if application modular. package main application , provide client-specific modules downloads. approach upgrades have multiple download steps: upgrade app, upgrade modules. think of "wordpress-style" updates/upgrades.


you might reduce complexity of upgrade/deployment process further dropping composer install --no-dev part on client machine building "client-specific application archives" on developer machine. these "--no-dev" package of application it's dependencies, including client-specific module(s) = pre-packaged.

like, application-v1.2.3-withmoduleaforclienta-v3.2.1.zip.

on dev machine: composer install --no-dev --optimize-autoloader + zip.

to install or upgrade download client, extract, execute upgrade script. done.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -