1. Go to this page and download the library: Download artesaos/moip-subscriptions 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/ */
artesaos / moip-subscriptions example snippets
use Artesaos\MoIPSubscriptions\MoIPSubscriptions;
$token = '0011001100110011001100110011';
$key = '10101010101010101010010101010101010';
$production = false;
// A chamada setCredentials recebe 3 parametros
// O Token da API, a Chave da API e a indicação de produção ou não (true/false)
MoIPSubscriptions::setCredentials($token, $key, $production);
use Artesaos\MoIPSubscriptions\Resources\Plan;
// Busca um Plano Já cadastrado com código 'plan123'
$plan = Plan::find('plan123');
// Configuramos um valor negativo no plano
$plan->amount = -2200;
// Se o plano não pode ser salvo
if(!$plan->save()) {
// e se Existe alguma mensagem de erro disponível
if ($plan->hasErrors()) {
// Método 1: obter um array com as mensagens de erro
$errors = $plan->getErrors()->all();
// Método 2: obter apenas o primeiro erro (caso hajam mais de 1 erro)
$error = $plan->getErrors()->first();
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.