承接 kimoslim/simplify 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kimoslim/simplify

Composer 安装命令:

composer require kimoslim/simplify

包简介

Composer package for payment API from mastercard, Simplify Commerce.

README 文档

README

                 PHP SDK for Simplify Commerce


  What is it?
  ------------

  A PHP API to the Simplify Commerce payments platform.   If you have
  not already got an account sign up at https://www.simplify.com/commerce.


  Installation
  ------------

  Add the lib directory to your PHP include path to access the SDK from
  your application:

      composer require kimoslim/simplify


  Using the SDK
  --------------

  To run a payment though Simplify Commerce use the following
  script substituting your public and private API keys:

    <?php
        require-once 'vendor/autoload.php';
        
        \KimoSlim\Simplify::$publicKey = 'YOUR_PUBLIC_API_KEY';
        \KimoSlim\Simplify::$privateKey = 'YOUR_PRIVATE_API_KEY';

        $payment = \KimoSlim\SimplifyPayment::createPayment(array(
            "card" => array(
                 "number" => "5555555555554444",
                 "expMonth" => 11,
                 "expYear" => 15,
                 "cvc" => "123"
            ),
            'amount' => '1000',
            'description' => 'prod description',
            'currency' => 'AUD'
        ));

        print_r($payment);

    ?>


  For more examples see https://www.simplify.com/commerce/docs/sdk/php.

  Version
  -------

  This is version 1.6.0 of the SDK.  See CHANGES.txt for a list 
  of changes. For an up-to-date version check at 
  https://www.simplify.com/commerce/docs/sdk/php.

  Licensing
  ---------

  Please see LICENSE.txt for details.

  Documentation
  -------------

  API documentation is available in the doc directory in HTML.  For more
  detailed information on the API with examples visit the online
  documentation at https://www.simplify.com/commerce/docs/sdk/php.

  Support
  -------

  Please see https://www.simplify.com/commerce/docs/support for information.

  Copyright
  ---------

  Copyright (c) 2013 - 2018 MasterCard International Incorporated
  All rights reserved.

统计信息

  • 总下载量: 4.51k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2018-07-05