Installation Guide

This guide explains how to install Simple Returns and its dependencies.

Table of Contents

Dependencies

Simple Returns has the following dependencies, as listed in its composer.json file:

"require": {
    "php": ">=7.1",
    "ext-gd": "*",
    "magento/framework": "102.*.*",
    "magento/module-catalog": "103.*.*",
    "magento/module-customer": "102.*.*",
    "magento/module-directory": "100.*.*",
    "magento/module-eav": "102.*.*",
    "magento/module-sales": "102.*.*",
    "magento/module-shipping": "100.*.*",
    "magento/module-store": "101.*.*",
    "magento/module-ups": "100.*.*",
    "auroraextensions/imageprocessor": "~1.0.0"
}

Note

The aforementioned list of dependencies is subject to change. Please consult the composer.json file of the target version you are using to find the most accurate list of dependencies.

Installation

You can install Simple Returns several ways, however we highly recommend using Composer. Simple Returns has dependencies, so installing with Composer makes dependency management substantially easier.

Composer

composer require auroraextensions/simplereturns

Setup

Once you’ve installed the module, you will need to enable it, along with its dependencies. Run the following from the Magento root directory:

bin/magento module:enable AuroraExtensions_ImageProcessor AuroraExtensions_SimpleReturns \
            --clear-static-content

Next, run the setup upgrade command from the Magento root directory:

bin/magento setup:upgrade

Note

The above command may take a few minutes to finish, so please be patient.

After setup upgrade has completed, verify the modules are listed as enabled:

bin/magento module:status

Next Steps

After you’ve completed the above steps, you will need to configure Simple Returns for use. This is explained at length in the Configuration guide.