Composer
Updates
There are 2 ways you can update Composer packages at once.
The easiest way to is to run the GitHub workflow:
- Open the
Update Composer packages
workflow under the Actions tab - Click "Run workflow", select "main`, and click "Run workflow"
- Wait for the workflow to complete and open the PR under the "Pull requests" tab
- Review all details, including individual release notes (!)
- Wait for tests to pass
- Merge!
Alternatively you can update them manually, locally:
- Run
composer outdated --direct
in your terminal - Run
composer update
to update all patch and minor version updates - Run
composer require repo/package=1.20
to update major versions individually - Review all details, including individual release notes (!)
- Create a new pull request
- Wait for tests to pass
- Merge!