fastpay/fastpay-php

This package is abandoned and no longer maintained. No replacement package was suggested.

FastPay SDK for PHP

v1.2.3 2015-02-16 09:30 UTC

This package is not auto-updated.

Last update: 2021-06-11 06:55:27 UTC


README

FastPayをPHPにより、簡単に利用するためのSDKです。

Composerによるインストール

composerをインストール

curl -sS https://getcomposer.org/installer | php

composer.jsonファイルに以下を追記してください

{
  "require": {
    "fastpay/fastpay-php":"~1.2.0"
  }
}

インストールが終わったら、composerのautoloaderを読み込む必要があります。

require 'vendor/autoload.php';

使い方

課金を作成する

<?php

require "vendor/autoload.php";

use FastPay\FastPay;

$fastpay = new FastPay("SecretID");

// 課金を作成
$charge = $fastpay->charge->create(array(
    "amount" => 666,
    "card" => "tok_xxxxxxxxxxxxxx",
    "description" => "fastpay@example.com",
    "capture" => "false",
));

// 課金を確定
$charge = $charge->capture();

// 課金を取り消し
$charge->refund();

依存プロジェクト

  • Guzzle – PHP HTTP client and framework