We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I don't get the point here. Say we have the following structure :
|- monrepo |- packages |- mylib composer.json |- web |- app composer.json composer.lock composer.json
So when I release a version, all the dependencies are updated, but not the composer.lock. So in a CI I can't do a composer install. How do you handle this ? I also read this blog but not helped me https://blog.logrocket.com/hosting-all-your-php-packages-together-in-a-monorepo/
Thanks
The text was updated successfully, but these errors were encountered:
Usually, The structure as following:
|- monrepo |- packages |- mylib1 composer.json |- mylib2 composer.json composer.json
merge composer context of all packages into the main composer.json (installed monorepo in this)
In the other project
|- web |- app composer.json composer.lock
Install own libs
Sorry, something went wrong.
Ok, in my case I have this structure :
|- monrepo |- packages |- myBundle composer.json |- web |- app composer.json => myBundle composer.lock |- app2 composer.json => myBundle composer.lock |- app3 composer.json => myBundle composer.lock ...... composer.json
In that case, monorepo-builder is not adapted for that ?
No branches or pull requests
Hi,
I don't get the point here. Say we have the following structure :
So when I release a version, all the dependencies are updated, but not the composer.lock. So in a CI I can't do a composer install.
How do you handle this ?
I also read this blog but not helped me https://blog.logrocket.com/hosting-all-your-php-packages-together-in-a-monorepo/
Thanks
The text was updated successfully, but these errors were encountered: