campusparty/projects

1.0.4 2018-08-01 14:56 UTC

README

Plugin for projects.

Installation

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

Either run

composer require campusparty/projects

or add this row

"campusparty/projects": "dev-test/1.0.0/1 as 1.0.0"

to the require section of your composer.json file.

2. Apply migrations

php yii migrate/up --migrationPath=@vendor/campusparty/projects/src/migrations

or add this row to your migrations config in console:

<?php
return [
    '@vendor/campusparty/projects/src/migrations',
];

3. Backend configuration

To enable the plugin in backend add this configuration in backend/config/modules-others.php file or in your main-local.php file.

<?php
'modules' => [
    'campuspartyprojects' => [
        'class' => 'campusparty\projects\Module',
    ],
],