e015/api-request


README

Plugin for E015 API requests.

Installation

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

Either run

composer require e015/api-request

or add this row

"e015/api-request": "dev-master"

to the require section of your composer.json file.

2. Add module to your main config in backend:

<?php
'modules' => [
    'e015apirequest' => [
        'class' => 'e015\apirequest\Module',
    ],
],

3. Apply migrations

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

or add this row to your migrations config in console:

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