Biblioteca que realiza integração com a API da Iugu
$ composer require bubbstore/iugu-php-sdk
Este SDK suporta os seguintes serviços:
Para utilizar este SDK, será necessário utilizar seu token de acesso de sua conta Iugu.
use bubbstore\Iugu;
use bubbstore\Iugu\Exceptions\IuguException;
use bubbstore\Iugu\Exceptions\IuguValidationException;
$iugu = new Iugu('SEU_TOKEN');
$customer = $iugu->customer()->create([
'name' => 'Lucas Colette',
'email' => 'lucas@bubb.com.br',
]);
// Imprime o ID do cliente
echo $customer['id'];
$customer = $iugu->customer()->update('ID_CLIENTE', [
'name' => 'John'
]);
$customer = $iugu->customer()->find('ID_CLIENTE');
var_dump($customer);
$iugu->customer()->delete('ID_CLIENTE');
$charge = $iugu->charge()->create([
'method' => 'bank_slip',
'email' => 'lucas@bubb.com.br',
'order_id' => uniqid(),
'payer' => [
'cpf_cnpj' => '65634052076',
'name' => 'Lucas Colette',
'phone_prefix' => '11',
'phone' => '11111111',
'email' => 'lucas@bubb.com.br',
'address' => [
'street' => 'Foo Bar',
'number' => '123',
'district' => 'Foo',
'city' => 'Foo',
'state' => 'SP',
'zip_code' => '14940000',
],
],
'items' => [
[
'description' => 'Item 1',
'quantity' => 1,
'price_cents' => 1000
],
[
'description' => 'Item 2',
'quantity' => 2,
'price_cents' => 2000
],
],
]);
$charge = $iugu->charge()->create([
'invoice_id' => '12345678',
'token' => '0000000000000000' // Token gerado através da lib iugu.js
]);
$invoice = $iugu->invoice()->create([
'order_id' => uniqid(),
'email' => 'lucas@bubb.com.br',
'due_date' => '2018-07-14',
'notification_url' => 'https://webhook.site/08703bf2-d408-4f4c-b91c-0bc8e14352b2',
'fines' => false,
'per_day_interest' => false,
'discount_cents' => 500,
'ignore_due_email' => true,
'payable_with' => 'bank_slip',
'items' => [
[
'description' => 'Item 1',
'quantity' => 1,
'price_cents' => 1000
],
[
'description' => 'Item 2',
'quantity' => 2,
'price_cents' => 2000
],
[
'description' => 'Frete',
'quantity' => 1,
'price_cents' => 1000
],
],
'payer' => [
'cpf_cnpj' => '65634052076',
'name' => 'Lucas Colette',
'phone_prefix' => '11',
'phone' => '11111111',
'email' => 'lucas@bubb.com.br',
'address' => [
'street' => 'Foo Bar',
'number' => '123',
'district' => 'Foo',
'city' => 'Foo',
'state' => 'SP',
'zip_code' => '14940000',
],
],
]);
// Imprime o ID da fatura
echo $invoice['id'];
$iugu->invoice()->capture('ID_FATURA');
$iugu->invoice()->find('ID_FATURA');
$iugu->invoice()->refund('ID_FATURA');
$iugu->invoice()->cancel('ID_FATURA');
$payment = $iugu->paymentMethod()->create('ID_CLIENTE', [
'description' => 'Cartão de Crédito',
'token' => '123456',
]);
// Imprime o ID do pagamento
echo $payment['id'];
$iugu->paymentMethod()->update('ID_CLIENTE', 'ID_METODO_PAGAMENTO', [
'description' => 'Outra description',
]);
$iugu->paymentMethod()->find('ID_CLIENTE', 'ID_METODO_PAGAMENTO');
$iugu->paymentMethod()->delete('ID_CLIENTE', 'ID_METODO_PAGAMENTO');
$ composer test
Consulte CHANGELOG para obter mais informações sobre o que mudou recentemente.
Consulte CONTRIBUTING para obter mais detalhes.
Se você descobrir quaisquer problemas relacionados à segurança, envie um e-mail para contato@bubbstore.com.br em vez de usar as issues.