joaquimrabelo / iugu
iugu PHP 库
1.0.0
2024-03-01 19:45 UTC
Requires
- php: >=5.4
- ext-curl: *
- ext-json: *
- ext-mbstring: *
Requires (Dev)
- php-vcr/php-vcr: ^1.4
- phpunit/phpunit: ^6
This package is not auto-updated.
Last update: 2024-09-29 12:23:24 UTC
README
要求
- PHP 5.4+
安装
下载库
git clone git@github.com:joaquimrabelo/iugu-php.git
在您的PHP文件中包含库
require_once(".../iugu-php/lib/Iugu.php");
使用Composer
$ composer require joaquimrabelo/iugu-php
Please provide a version constraint for the iugu/iugu requirement: 1.0.0
Composer的自动加载将处理其余部分。
使用示例
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