Manual Installation

1. Install the Plugin via Composer

composer require sylius/wishlist-plugin

2. Enable the Bundle

# config/bundles.php

return [
    ...
    Sylius\WishlistPlugin\SyliusWishlistPlugin::class => ['all' => true],
];

3. Import Configuration

# config/packages/_sylius.yaml

imports:
    ...
    - { resource: "@SyliusWishlistPlugin/config/config.yaml" }

4. Import routes

# config/routes.yaml

...
sylius_wishlist:
    resource: "@SyliusWishlistPlugin/config/routes.yaml"

5. Import plugin assets

6. Install and build assets

7. Run Doctrine Migrations

The plugin comes with database changes. Run:

8. Clear the Symfony Cache

Finally, clear the Symfony cache to ensure changes are applied:

circle-exclamation

Using Asynchronous Messenger?

Last updated

Was this helpful?