e015/api


README

Plugin for E015 API.

Installation

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

Either run

composer require e015/api

or add this row

"e015/api": "dev-master"

to the require section of your composer.json file.

2. Add module to your main config in backend:

<?php
'modules' => [
    'e015api' => [
        'class' => 'e015\api\Module',
    ],
],

3. Apply migrations

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

or add this row to your migrations config in console:

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