dvizh/yii2-certificate

Yii2 certificate module

Installs: 932

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 1

Open Issues: 0

Type:yii2-extension

dev-master 2018-02-17 20:40 UTC

This package is not auto-updated.

Last update: 2024-04-13 23:04:08 UTC


README

Certificates module for Yii2

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist dvizh/yii2-certificate "@dev"

or add

"dvizh/yii2-certificate": "@dev"

to the require section of your composer.json file.

Make migration

php yii migrate --migrationPath=@vendor/dvizh/yii2-certificate/src/migrations/

Usage

You should add module to your config:

'modules' => [
        ...
        'certificate' => [
            'class' => \dvizh\certificate\Module::className(),
            'targetModelList' => [
            //list models for certification
            ]
        ],
    ],

It is possible that you have to change minimum stability section of your composer.json file to dev

"minimum-stability": "dev",