Skip to content

Upgrading

SyliusMarketplacePlugin regularly releases new versions according to our release cycle. Each minor release comes with an UPGRADE.md file, which is meant to help in the upgrading process.

  1. Update the SyliusMarketplacePlugin library version constraint by modifying the composer.json file:
yml
{
   "require": {
      "odiseoteam/sylius-marketplace-plugin": "^3.0"
   }
}
  1. Upgrade dependencies by running a Composer command:
bash
composer update odiseoteam/sylius-marketplace-plugin --with-all-dependencies

If this does not help, it is a matter of debugging the conflicting versions and working out how your composer.json should look after the upgrade. You can check what version of SyliusMarketplacePlugin is installed by running composer show odiseoteam/sylius-marketplace-plugin command.

  1. Follow the instructions found in the UPGRADE.md file for a given minor release.

by Odiseo