PHP code example of igorsamaral / iugu-php
1. Go to this page and download the library: Download igorsamaral/iugu-php library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
igorsamaral / iugu-php example snippets
= new Iugu\Client("SUA_CHAVE_DE_API");
= new iugu\Client(
"SUA_CHAVE_DE_API",
["headers" => ["MEU_HEADER_CUSTOMIZADO" => "VALOR HEADER CUSTOMIZADO"]]
);
$customer = $iugu->customers()->create([
"email" => "[email protected] ",
"name" => "João das Neves",
"notes" => "lorem...",
"phone" => "999999999",
"phone_prefix" => "11",
"cpf_cnpj" => "11743685009",
"zip_code" => "76814112",
"number" => "100",
"street" => "Rua Cabedelo",
"city" => "Porto Velho",
"state" => "RO",
"district" => "Marcos Freire",
"complement" => "complemento...",
"custom_variables" => [
"key" => "value"
]
]);
$customers = $iugu->customers()->getList();
$customer = $iugu->customers()->get([
"id" => "ID_DO_CLIENTE"
]);
$token = $iugu->paymentToken()->create([
"account_id" => "ID_DA_SUA_CONTA_IUGU",
"customer_id" => "ID_DO_CUSTOMER",
"method" => "credit_card",
"data" => [
"number" => "4242424242424242",
"verification_value" => "648",
"first_name" => "João",
"last_name" => "das Neves",
"month" => "01",
"year" => "2023"
],
"test" => true,
]);
$charge = $iugu->charges()->create([
"token" => "ID_DO_TOKEN_DE_PAGAMENTO_CRIADO",
"customer_id" => "ID_DO_CUSTOMER",
"total" => 10000,
"payer" => [
"cpf_cnpj" => "84752882000",
"name" => "João das Neves",
"address" => [
"zip_code" => "72917210",
"number" => "100"
]
],
"items": [
[
"description" => "Descrição do item 1",
"quantity" => 1,
"price_cents" => 10000
]
]
]);
$invoice = $iugu->invoices()->create([
"email" => "[email protected] ",
"due_date" => "2021-07-21",
"items" => [
[
"description" => "Descrição do item 1",
"quantity" => 1,
"price_cents" => 10000
]
],
"total" => 10000,
"payer" => [
"cpf_cnpj" => "84752882000",
"name" => "João das Neves",
"address" => [
"zip_code" => "72917210",
"number" => "100"
]
]
]);
$invoices = $iugu->invoices()->getList();
$invoice = $iugu->invoices()->get([
"id" => "ID_DA_FATURA"
]);