Skip to content
This repository was archived by the owner on Mar 22, 2023. It is now read-only.

Latest commit

 

History

History
42 lines (32 loc) · 708 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 708 Bytes

Group module for Evolun

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist polgarz/evolun-group "@dev"

or add

"polgarz/evolun-group": "@dev"

to the require section of your composer.json file.

Migration

php yii migrate/up --migrationPath=@vendor/polgarz/evolun-group/migrations

Configuration

'modules' => [
    'group' => [
        'class' => 'evolun\group\Module',
        'typeList' => [
            'professional' => 'Professional groups',
            'maintenance'  => 'Maintenance groups',
        ],
    ],
],