usesgraphcrt / yii2-certificate
Yii2 certificate module
Package info
github.com/usesgraphcrt/yii2-certificate
Type:yii2-extension
pkg:composer/usesgraphcrt/yii2-certificate
dev-master
2017-04-20 06:53 UTC
Requires
This package is not auto-updated.
Last update: 2026-03-15 03:18:10 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 usesgraphcrt/yii2-certificate "*"
or add
"usesgraphcrt/yii2-certificate": "*"
to the require section of your composer.json file.
Make migration
php yii migrate --migrationPath=@vendor/usesgraphcrt/yii2-certificate/migrations/
Usage
You should add module to your config:
'modules' => [ ... 'certificate' => [ 'class' => \usesgraphcrt\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",