fastpay / fastpay-php
FastPay SDK for PHP
Installs: 898
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 11
Forks: 4
Open Issues: 1
Requires
- php: >=5.3.3
- guzzle/guzzle: >=3.7.0,<3.9.0
Requires (Dev)
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