Upgrading Sylius Plus¶
Sylius regularly releases new versions, usually every two weeks.
Each release comes with an UPGRADE.md
file, which is meant to help in the upgrading process.
Update the Sylius Plus version constraint by modifying the ``composer.json`` file:
{ "require": { "sylius/plus": "^1.0.0@beta" } }
Upgrade dependencies by running a Composer command:
composer update sylius/plus --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 Sylius is installed by runningcomposer show sylius/plus
command.Follow the instructions found in the ``UPGRADE.md`` file for a given minor release.
Note
As Sylius Plus is a private repository its README files (and CHANGELOG) have been exposed in a separate public repository which can be found here: https://github.com/Sylius/PlusInformationCenter
