usesgraphcrt / yii2-certificate
Yii2 certificate module
Installs: 55
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2025-03-29 22:33:16 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",