e-bike/offers

There is no license information available for the latest version (dev-master) of this package.

E-Bike Offers

dev-master 2023-05-16 02:39 UTC

README

E-Bike Offers for E-Bike Assets

Installation

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

Either run

composer require e-bike/offers

or add this row

"e-bike/offers": "dev-master"

to the require section of your composer.json file.

  1. Add module to your modules config in backend:

    `php

    'modules' => [

     'ebikoffers' => [
         'class' => 'ebike\offers\EbikeOffers',
     ],
    

    ],

  2. Apply migrations

    a. assets migrations `bash php yii migrate/up --migrationPath=@vendor/e-bike/offers/src/migrations `

    or add this row to your migrations config in console:

    `php return [

     .
     .
     .
     '@vendor/e-bike/offers/src/migrations',
     .
     .
     .
    

    ]; `

Configuration