dell / yii2-stripe
Yii 2 Stripe
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ~5.6.0|~7.0.0
- stripe/stripe-php: 4.1.1
- yiisoft/yii2: 2.0.10
- yiisoft/yii2-bootstrap: 2.0.6
This package is not auto-updated.
Last update: 2025-01-27 14:57:15 UTC
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' ], ]); ?>