2017 © Pedro PelĆ”ez
 

library moip-assinaturas

image

pinheironinja/moip-assinaturas

  • Thursday, July 12, 2018
  • by pinheironinja
  • Repository
  • 1 Watchers
  • 0 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 30 % Grown

The README.md

MoIP Assinaturas v1.5 PHP client SDK

ƍndice

<, (*1)

h2 id="section-installation">Instalação, (*2)

Execute em seu shell:, (*3)

composer require pinheironinja/moip-assinaturas

Autenticação

Basic Auth

 '10101010101010101010101010101010',
    'key' => 'ABABABABABABBABVABAVABASVBSAVSABSAVSBAVABS',
    'sandbox' => true
);

$moip = new Moip($moip_account_info);

Clientes

Criando um cliente

$customer = $moip->customers();

$customer->setCode(uniqid());
$customer->setFullName('Joãozinho Exemplo da Silva');
$customer->setEmail('email@example.com');
$customer->setCPF('22222222222');
$customer->setPhone('99','999999999');
$customer->setBirthdate('1994-01-18');
$customer->setAddress('R Teste', '12', 'Centro', 'Nova IguaƧu', 'RJ', '00000000', 'BRA' );
$customer->create();

print_r($customer);

Consultando dados de um cliente

$customer = $moip->customers()->get('5ac9a60880684');
print_r($customer);

Consultando todos os clientes

$customers = $moip->customers()->all();
print_r($customers);

The Versions

12/07 2018

dev-master

9999999-dev

  Sources   Download

by Felipe Pinheiro

08/04 2018

v1.0.3

1.0.3.0

  Sources   Download

by Felipe Pinheiro

08/04 2018

v1.0.2

1.0.2.0

  Sources   Download

by Felipe Pinheiro

08/04 2018

v1.0.1

1.0.1.0

  Sources   Download

by Felipe Pinheiro

07/04 2018

v1.0.0

1.0.0.0

  Sources   Download

by Felipe Pinheiro