mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
feature #11461 [Docs][Plus] Add Plus upgrading guide (CoderMaggie)
This PR was merged into the 1.7 branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | 1.7
| Doc fix? | no
| New docs? | yes
| Related tickets | should be also updated on master after #11445
| License | MIT
Commits
-------
79bde59e4d [Docs][Plus] Add Plus upgrading guide
This commit is contained in:
commit
d0c2a713fe
3 changed files with 41 additions and 0 deletions
|
|
@ -10,5 +10,6 @@ The process of installing Sylius together with the requirements to run it effici
|
|||
installation
|
||||
sylius_plus_installation
|
||||
upgrading
|
||||
sylius_plus_upgrading
|
||||
|
||||
.. include:: /book/installation/map.rst.inc
|
||||
|
|
|
|||
|
|
@ -2,3 +2,4 @@
|
|||
* :doc:`/book/installation/installation`
|
||||
* :doc:`/book/installation/sylius_plus_installation`
|
||||
* :doc:`/book/installation/upgrading`
|
||||
* :doc:`/book/installation/sylius_plus_upgrading`
|
||||
|
|
|
|||
39
docs/book/installation/sylius_plus_upgrading.rst
Normal file
39
docs/book/installation/sylius_plus_upgrading.rst
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
.. rst-class:: plus-doc
|
||||
|
||||
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.
|
||||
|
||||
1. **Update the Sylius Plus version constraint by modifying the ``composer.json`` file:**
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
{
|
||||
"require": {
|
||||
"sylius/plus": "^0.21"
|
||||
}
|
||||
}
|
||||
|
||||
2. **Upgrade dependencies by running a Composer command:**
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
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 running ``composer show sylius/plus`` command.
|
||||
|
||||
3. **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>`_
|
||||
|
||||
|
||||
.. image:: ../../_images/sylius_plus/banner.png
|
||||
:align: center
|
||||
:target: http://sylius.com/plus/?utm_source=docs
|
||||
Loading…
Add table
Reference in a new issue