open20/open2-site-management

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

Site Management

1.5.1 2023-05-23 12:20 UTC

README

Plugin for site management.

Installation

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

Either run

composer require amos/site-management

or add this row

"amos/site-management": "dev-master"

to the require section of your composer.json file.

2. Add module to your main config in backend:

<?php
'modules' => [
    'sitemanagement' => [
        'class' => 'amos\sitemanagement\Module',
    ],
],

3. Apply migrations

php yii migrate/up --migrationPath=@vendor/amos/site-management/src/migrations

or add this row to your migrations config in console:

<?php
return [
    '@vendor/amos/site-management/src/migrations',
];