tmaxiugu/iugu

iugu PHP 库

dev-master 2024-03-14 11:47 UTC

This package is auto-updated.

Last update: 2024-09-14 12:57:15 UTC


README

Build status

要求

  • PHP 5.4+

安装

下载库

git clone https://github.com/iugu/iugu-php

在您的PHP文件中包含库

require_once(".../iugu-php/lib/Iugu.php");

使用Composer

$ composer require iugu/iugu
Please provide a version constraint for the iugu/iugu requirement: 1.0.7

Composer的autoload将处理剩余部分。

使用示例

Iugu::setApiKey("c73d49f9-6490-46ee-ba36-dcf69f6334fd"); // Ache sua chave API no Painel

Iugu_Charge::create(
    [
        "token"=> "TOKEN QUE VEIO DO IUGU.JS OU CRIADO VIA BIBLIOTECA",
        "email"=>"your@email.test",
        "items" => [
            [
                "description"=>"Item Teste",
                "quantity"=>"1",
                "price_cents"=>"1000"
            ]
        ]
    ]
);

文档

访问 iugu.com/documentacao 获取参考

测试

安装依赖项

composer update

运行测试套件

composer tests