dvizh / yii2-certificate
Yii2 certificate module
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 936
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 0
Type:yii2-extension
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",