dvizh / yii2-certificate
Yii2 certificate module
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Package info
github.com/dvizh/yii2-certificate
Type:yii2-extension
pkg:composer/dvizh/yii2-certificate
dev-master
2018-02-17 20:40 UTC
Requires
This package is not auto-updated.
Last update: 2024-09-29 01:32:58 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",