PHP code example of edson-nascimento / cielo-link-php

1. Go to this page and download the library: Download edson-nascimento/cielo-link-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/ */

    

edson-nascimento / cielo-link-php example snippets


use CieloLink\API\Environment;
use CieloLink\API\CieloLink;
use CieloLink\API\Payment;
use CieloLink\API\Shipping;
use CieloLink\API\Recurrent;

environment    = Environment::production();

$cieloLink = new CieloLink($clientId, $clientSecret, $environment);

$payment = new Payment();
$payment->setType(Payment::TYPE_RECURRENT);
$payment->setName("Product Test");
$payment->setExpirationDate("2037-06-19");
$payment->setDescription("Product Test");
$payment->setPrice(127.75);
$payment->setShowDescription(true);
$payment->setSoftDescriptor("Order1234");

$payment->shipping()
        ->setName("Test")
        ->setOriginZipCode("00000000")
        ->setPrice(0)
        ->setType(Shipping::TYPE_WITHOUT_SHIPPING);

$payment->recurrent()
        ->setEndDate("2030-01-27")
        ->setInterval(Recurrent::TYPE_MONTHLY);

// Create
$responsePayment = $cieloLink->create($payment);

// Find
$responsePayment = $cieloLink->get($responsePayment->getId());

// Update
$responsePayment->setName("Product Alter 2");
$responsePayment->setExpirationDate("2020-01-01");
$responsePayment->setType(Payment::TYPE_PAYMENT);

$responsePayment = $cieloLink->update($responsePayment);

//Delete
$responsePayment = $cieloLink->delete($responsePayment->getId());

"edson-nascimento/cielo-link-php": "^1.0"

$ composer