[Bug] Fix default sylius config file path in Sylius 1.9

This commit is contained in:
Łukasz Chruściel 2021-08-27 16:01:17 +02:00
parent 7ce1cf4709
commit 068cc6597b
No known key found for this signature in database
GPG key ID: 049A1D51AA3B039C
5 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# UPGRADE FROM `v1.8.4` TO `v1.8.6`
1. API is disabled by default, to enable it you need to set flag to ``true`` in ``app/config/packages/_sylius.yaml``:
1. API is disabled by default, to enable it you need to set flag to ``true`` in ``config/packages/_sylius.yaml``:
```yaml
sylius_api:

View file

@ -1,6 +1,6 @@
# UPGRADE FROM `v1.9.5` TO `v1.9.6`
1. API is disabled by default, to enable it you need to set flag to ``true`` in ``app/config/packages/_sylius.yaml``:
1. API is disabled by default, to enable it you need to set flag to ``true`` in ``config/packages/_sylius.yaml``:
```yaml
sylius_api:

View file

@ -1,6 +1,6 @@
# UPGRADE FROM `v1.8.4` TO `v1.8.6`
1. Api is disabled by default, to enable it you need to set flag ``sylius_api.enabled`` to ``true`` in ``app/config/packages/_sylius.yaml``.
1. Api is disabled by default, to enable it you need to set flag ``sylius_api.enabled`` to ``true`` in ``config/packages/_sylius.yaml``.
1. Change configuration of new ApiBundle in your `config/packages/security.yaml` file:

View file

@ -1,6 +1,6 @@
# UPGRADE FROM `v1.9.5` TO `v1.9.6`
1. API is disabled by default, to enable it you need to set flag to ``true`` in ``app/config/packages/_sylius.yaml``:
1. API is disabled by default, to enable it you need to set flag to ``true`` in ``config/packages/_sylius.yaml``:
```yaml
sylius_api:

View file

@ -5,7 +5,7 @@ Introduction
The new, unified Sylius API is still under development, that's why the whole ``ApiBundle`` is tagged with ``@experimental``.
This means that all code from ``ApiBundle`` is excluded from :doc:`Backward Compatibility Promise </book/organization/backward-compatibility-promise>`.
You can enable entire API by changing the flag ``sylius_api.enabled`` to ``true`` in ``app/config/packages/_sylius.yaml``.
You can enable entire API by changing the flag ``sylius_api.enabled`` to ``true`` in ``config/packages/_sylius.yaml``.
We have decided that we should rebuild our API and use API Platform to build a truly mature, multi-purpose API
which can define a new standard for headless e-commerce backends.