2
My idea is to create a base administrative panel, where I can use the next sites, without having to copy and paste. At the base I have only control of users and menus, the rest I create packages and require each new site only what is necessary. It’s all in packagist with webhook configured.
So when creating a new website, I do:
composer create-project meuusuario/meucms novo_projeto
So far so good, but I can’t leave other projects dependent on the base.
For example: if I have changed something in the database, others will update via Composer update. This is possible?
It is easier to base being a dependency of your project based on Laravel, no?
– Rodrigo Rigotti
I got it, I’ll probably have to do it that way anyway. Thanks
– Edno Nunes