...
| Info |
|---|
When updating from 16.02 or earlier to 16.04 or laterStarting from 16.04, the main meta repository was split in two:
Before pulling the latest version you have to change your git remote repository. There are two ways to do this: 1. The quick way: simply replace repository name in config file for example using sed (this way is useful if you added any remotes):
2. Using git remote:
Next, pull the latest changes:
Now, manually remove the contents of the
|
...
Once you are done, inspect the file, either using an editor or by running git diff composer.json. You may also test the file's sanity with composer validate, and test the dependencies by running composer update --dry-run. (will output what it would do to dependencies, without applying the changes.
Once finished, run git add composer.json.
...
