lispa/amos-project-management

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

Manage projects

2.0.2 2019-02-22 16:55 UTC

This package is auto-updated.

Last update: 2020-05-17 15:16:20 UTC


README

Manage and Operate With Projects from design to production with community and components

Installation

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

    Either run

    composer require lispa/amos-project-management

    or add

    "lispa/amos-project-management": "~1.0"
    

    to the require section of your composer.json file.

  2. Add module to your main config in common:

    ```php
    <?php
    'modules' => [
        'project-management' => [
            'class' => 'lispa\amos\projectmanagement\Module'
        ],
    ],
    ```
    

    Also, add these lines to your console config:

    'controllerMap' => [
        'project-management' => [
            'class' => 'yii\console\controllers\MigrateController',
            'migrationPath' => '@project-management/migrations'
        ],
    ],
  3. Apply migrations

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