Require upgraded Sylius version using Composer:
composer require sylius/sylius:~1.7.0
Update your package.json
in order to add chart.js
and slick-carousel
:
{
"dependencies": {
"babel-polyfill": "^6.26.0",
+ "chart.js": "^2.9.3",
"jquery": "^3.4.0",
"jquery.dirtyforms": "^2.0.0",
"lightbox2": "^2.9.0",
"semantic-ui-css": "^2.2.0",
+ "slick-carousel": "^1.8.1"
},
...
}
You may need to remove SonataCoreBundle
from your list of used bundles in config/bundles.php
(if you are not using it explicitly):
winzou\Bundle\StateMachineBundle\winzouStateMachineBundle::class => ['all' => true],
- Sonata\CoreBundle\SonataCoreBundle::class => ['all' => true],
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
And you should remove config/packages/sonata_core.yaml
as well.
Sylius\Bundle\UiBundle\Block\BlockEventListener
has been deprecated, usesylius_ui
configuration instead.
Those are excluded from our BC promise:
Sylius\Bundle\ShopBundle\EventListener\UserMailerListener
has been removed and replaced withSylius\Bundle\CoreBundle\EventListener\MailerListener