Skip to content

Composer

Updates

There are 2 ways you can update Composer packages at once.

The easiest way to is to run the GitHub workflow:

  1. Open the Update Composer packages workflow under the Actions tab
  2. Click "Run workflow", select "main`, and click "Run workflow"
  3. Wait for the workflow to complete and open the PR under the "Pull requests" tab
  4. Review all details, including individual release notes (!)
  5. Wait for tests to pass
  6. Merge!

Alternatively you can update them manually, locally:

  1. Run composer outdated --direct in your terminal
  2. Run composer update to update all patch and minor version updates
  3. Run composer require repo/package=1.20 to update major versions individually
  4. Review all details, including individual release notes (!)
  5. Create a new pull request
  6. Wait for tests to pass
  7. Merge!