graychen / yii2-jd-deposit
为jd-deposit扩展的yii2
v0.0.1
2018-04-25 08:51 UTC
Requires
- yiisoft/yii2: 2.0.15.1
Requires (Dev)
- phpunit/phpunit: ^7.1
This package is not auto-updated.
Last update: 2024-09-15 05:02:55 UTC
README
这是一个和京东游戏充值对接的composer扩展模块)
迁移数据库
要向您的数据库添加查找表,以下是为查找提供的sql
您可以使用yii迁移
yii migrate/up --migrationPath=@graychen/yii2/jd/deposit/migrations
API
在components部分配置模块
'jd-deposit' => [
'class' => 'graychen\yii2\jd\deposit\Module',
]
使用操作
class jdController extends Controller
{
public function actions()
{
return [
'create' => [
'class' => 'graychen\yii2\jd\deposit\createAction'
],
'status' => [
'class' => 'graychen\yii2\jd\deposit\statusAction'
]
];
}
}
后端
配置 -> main.php
'controllerMap' => [
'migrate' => [
'class' => 'yii\console\controllers\MigrateController',
'migrationPath' => [
'@graychen/yii2/jd/deposit/migrations'
],
],
],
在components部分配置模块
'queue' => [ 'class' => 'graychen\yii2\deposit\backend\Module', ]