api/marketplace


README

Plugin for Api-Marketplace.

Installation

1. The preferred way to install this extension is through composer.

Either run

composer require api/marketplace

or add this row

"api/marketplace": "dev-master"

to the require section of your composer.json file.

2. Add module to your main config in backend:

'modules' => [
    'marketplace' => [
        'class' => 'api\marketplace\Module',
    ],
],

3. Apply migrations

php yii migrate/up --migrationPath=@vendor/api/marketplace/src/migrations

or add this row to your migrations config in console:

return [
    '@vendor/api/marketplace/src/migrations',
];