e015/app


README

Plugin for E015 App.

Installation

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

Either run

composer require e015/app

or add this row

"e015/app": "dev-master"

to the require section of your composer.json file.

2. Add module to your main config in backend:

<?php
'modules' => [
    'e015app' => [
        'class' => 'e015\app\Module',
    ],
],

3. Apply migrations

php yii migrate/up --migrationPath=@vendor/e015/app/src/migrations

or add this row to your migrations config in console:

<?php
return [
    '@vendor/e015/app/src/migrations',
];