Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Plugin that allows customers to reorder previously placed order.

Notifications You must be signed in to change notification settings

Sylius/CustomerReorderPlugin

Repository files navigation

CustomerReorderPlugin

SyliusCustomerReorderPlugin allows customer to reorder previously placed order.

Installation

Require plugin with composer:

composer require sylius/customer-reorder-plugin

Import configuration:

imports:
    - { resource: "@SyliusCustomerReorderPlugin/Resources/config/config.yml" }

Import routing:

sylius_customer_reorder:
    resource: "@SyliusCustomerReorderPlugin/Resources/config/app/reorder_routing.yml"

Add plugin class to your AppKernel:

$bundles = [
    new \Sylius\CustomerReorderPlugin\SyliusCustomerReorderPlugin(),
];

Clear cache:

bin/console cache:clear