2017 © Pedro Peláez
 

yii2-extension yii2-2checkout

Yii2 extension for 2checkout library forked from joni-jones/yii2-2checkout

image

frankirox/yii2-2checkout

Yii2 extension for 2checkout library forked from joni-jones/yii2-2checkout

  • Friday, January 2, 2015
  • by frankirox
  • Repository
  • 1 Watchers
  • 0 Stars
  • 73 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 7 % Grown

The README.md

2Checkout PHP library for Yii 2

Extension provides access for 2Checkout library methods from Yii2 framework., (*1)

How to install?

Get it via composer by adding the package to your composer.json:, (*2)

{
  "require": {
    "joni-jones/yii2-2checkout": "*"
  }
}

or run, (*3)

php composer.phar require --prefer-dist joni-jones/yii2-2checkout "*"

Usage

Once the extension is installed, simply modify your application configuration as follows:, (*4)

return [
    'components' => [
        'twocheckout' => [
            'class' => 'yii\twocheckout\Twocheckout',
            'privateKey' => '',
            'sellerId' => '',
            'secretWord' => '', //by default is 'tango'
            'username' => '', //required to Admin API call
            'password' => '', //required to Admin API call
            'sandbox' => true, //by default false,
        ]
    ],
    // ...
];

The Charge class usage example (equal to Twocheckout_Charge::form()):, (*5)

$product['currency_code'] = 'USD';
$product['mode'] = '2CO';
$product['li_0_price'] = '0.01';
$product['merchant_order_id'] = '1122312';
$product['li_0_name'] = 'Credit';
$product['li_0_quantity'] = '1';
$product['li_0_type'] = 'product';
$product['li_0_tangible'] = 'N';
$product['li_0_product_id'] = '43242342';
$product['sid'] = Yii::$app->twocheckout->sellerId;
$product['demo'] = Yii::$app->twocheckout->demo;
$product['key'] = md5($product['merchant_order_id'].$product['li_0_product_id']);
Yii::$app->twocheckout->charge->form($product);

Full documentation you can find on 2Checkout site., (*6)

The Versions

02/01 2015

dev-master

9999999-dev

Yii2 extension for 2checkout library forked from joni-jones/yii2-2checkout

  Sources   Download

MIT

The Requires

 

The Development Requires

by Ievgen Sentiabov
by Franchesco Fonseca

payment gateway yii2 2checkout 2co