whalew / iap-component
In app Purchase component for yii2. Need for verify your purchases in Itusnes-server
dev-master
2019-02-22 16:01 UTC
Requires
- linslin/yii2-curl: *
- yiisoft/yii2: 2.*
- yiisoft/yii2-bootstrap: ^2.0
This package is auto-updated.
Last update: 2025-03-23 04:51:44 UTC
README
Yii2 In app Purchase Component.
Installation composer require "linnoxlewis/Iap-component"
Basic Configuration Once the extension is installed, simply modify your application configuration as follows:
use linnoxlewis\iap\IapComponent;
return [ 'components' => [ // ... 'iap-component' => [ 'class' => IapComponent::class, 'sandbox' => true !== YII_ENV_PROD, 'sandboxUrl' =>'https://sandbox.itunes.apple.com/verifyReceipt', 'buyUrl' => 'https://buy.itunes.apple.com/verifyReceipt', 'password' => '', ] ], ]
How to Use :
$verify = Yii::$app->get('iap-component');
$verify->verify($receipt);