Yii2 证书模块

安装: 55

依赖项: 0

建议者: 0

安全: 0

星标: 1

关注者: 3

分支: 0

开放问题: 0

类型:yii2-extension

dev-master 2017-04-20 06:53 UTC

This package is not auto-updated.

Last update: 2024-09-28 20:14:39 UTC


README

为 Yii2 提供证书模块

安装

安装此扩展的首选方式是通过 composer

运行以下命令之一:

php composer.phar require --prefer-dist usesgraphcrt/yii2-certificate "*"

或者

"usesgraphcrt/yii2-certificate": "*"

将以下内容添加到您的 composer.json 文件的要求部分。

创建迁移

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

使用方法

您需要将模块添加到您的配置中

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

可能需要将您的 composer.json 文件中的最小稳定性部分更改为 dev

"minimum-stability": "dev",