mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 17:10:53 +00:00
bug #13019 [Bug] Fix default sylius config file path in Sylius 1.9 (lchrusciel)
This PR was merged into the 1.9 branch.
Discussion
----------
| Q | A
| --------------- | -----
| Branch? | 1.9
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Related tickets |
| License | MIT
There is no such file as `app/config/packages/_sylius.yaml`. App prefix is not needed, because related configuration should be placed in: https://github.com/Sylius/Sylius-Standard/blob/1.10/config/packages/_sylius.yaml
This PR contains fixes to 1.8 as well, as I'm not sure if we want to merge then on previous branch
<!--
- Bug fixes must be submitted against the 1.9 or 1.10 branch (the lowest possible)
- Features and deprecations must be submitted against the master branch
- Make sure that the correct base branch is set
To be sure you are not breaking any Backward Compatibilities, check the documentation:
https://docs.sylius.com/en/latest/book/organization/backward-compatibility-promise.html
-->
Commits
-------
068cc6597b [Bug] Fix default sylius config file path in Sylius 1.9
This commit is contained in:
commit
fd4efe10bb
2 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue