dell/yii2-stripe
Composer 安装命令:
composer create-project dell/yii2-stripe
包简介
Yii 2 Stripe
README 文档
README
Configuration
<?php // @console return [ // .... 'bootstrap' => [\dell\stripe\Module::MODULE_ID], // .... 'modules' => [ // .... \dell\stripe\Module::MODULE_ID => [ 'class' => \dell\stripe\Module::class ], ], // .... ]; // @frontend return [ // .... 'modules' => [ \dell\stripe\Module::MODULE_ID => [ 'class' => \dell\stripe\Module::class, 'apiPublicKey' => 'pk_xxxx_xxxxxxxxxxxxxxxxxxxxxxxx', 'apiSecretKey' => 'sk_xxxx_xxxxxxxxxxxxxxxxxxxxxxxx', ], ], // .... ];
Migrations
./yii migrate --migrationPath='@stripe/migrations'
Form integration
<?php echo \dell\stripe\widget\stripe\Form::widget([ 'template' => 'form', 'params' => ['card' => new \dell\stripe\models\card\Form()] ]); ?>
Or button integration
<?php echo \dell\stripe\widget\stripe\Form::widget([ 'template' => 'button', 'params' => [ 'name' => 'Test', 'description' => 'Test application' ], ]); ?>
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MTI
- 更新时间: 2016-10-31